Skip to content

Commit

Permalink
change to github actions (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
bw1 authored Apr 2, 2023
1 parent 01044f9 commit 3a33c42
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 50 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: check
on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
checklinks:
name: Linux
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v2
- name: Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2.1
- name: Setup Rubygems, Bundler, jekyll
run: |
gem update --system --no-document
gem update bundler --no-document
gem install jekyll bundler
bundle install
- name: Build jekyll website with drafts
run: bundle exec jekyll build --drafts
- name: Check for broken links
run: |
bundle exec htmlproofer ./_site --disable-external --no-enforce-https --allow-missing-href --no-check-internal-hash
- name: check more
run: |
_scripts/run_check.pl
22 changes: 0 additions & 22 deletions .travis.yml

This file was deleted.

3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ submitting them back to us. See COPYING for more information.

Otherwise, please do not create mirrors of the site, thanks.

[![Build Status](https://app.travis-ci.com/irchelp/irchelp.github.io.svg?branch=master)](https://app.travis-ci.com/irchelp/irchelp.github.io)
[![status](https://github.com/irchelp/irchelp.github.io/workflows/check/badge.svg)](https://github.com/irchelp/irchelp.github.io)

[![#irchelp on efnet](https://img.shields.io/badge/efnet-%23irchelp-pink.svg)](http://chat.efnet.org:9090/?nick=guest1234&channels=%23irchelp)
[![#irchelp on libera.chat](https://img.shields.io/badge/libera.chat-%23irchelp-pink.svg)](https://web.libera.chat/#irchelp)

Expand Down
14 changes: 0 additions & 14 deletions _scripts/build-jekyll.sh

This file was deleted.

13 changes: 0 additions & 13 deletions _scripts/deploy_staging.sh

This file was deleted.

0 comments on commit 3a33c42

Please sign in to comment.