add blaming paper #310
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: htmlproofer | |
on: | |
push: | |
branches: | |
- htmlproofer | |
- master | |
workflow_dispatch: | |
inputs: | |
branchname: | |
description: 'Run htmlproofer on branch' | |
default: 'htmlproofer' | |
required: true | |
jobs: | |
htmlproofer1: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Checkout ${{ github.event.inputs.branchname }} | |
uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.event.inputs.branchname }} | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '2.7' | |
- name: Build jekyll site | |
run: | | |
bundle install | |
bundle update github-pages | |
bundle exec jekyll build | |
- name: Run HTMLProofer action | |
run: | | |
bundle exec htmlproofer --empty_alt_ignore --checks-to-ignore ImageCheck --only_4xx --url-ignore "https://fonts.gstatic.com,https://fonts.gstatic.com/,https://www.linkedin.com,https://github.com/jku-vds-lab/rubiks-cube-demonstrator,https://www.amd.com/en/support,https://support.amd.com/us/gpudownload/Pages/index.aspx,dx.doi.org/10.33313/380/218,https://dx.doi.org/10.1177/1473871619878085" --assume-extension ./_site --http_status_ignore="999,403" | |
#branding: | |
#icon: "check" | |
#color: "green" | |