Update DjangoCon US location to "rotating" (#67) #56
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: | |
- gh-pages | |
pull_request: | |
branches: | |
- gh-pages | |
schedule: | |
- cron: '0 0 * * SAT' | |
jobs: | |
checklinks: | |
name: Linux | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v2 | |
- name: setup ruby | |
uses: ruby/setup-ruby@v1 | |
- name: bundle install | |
run: | | |
gem update --system --no-document | |
gem update bundler --no-document | |
gem install jekyll bundler | |
bundle install | |
- name: build jekyll | |
run: bundle exec jekyll build | |
- name: htmlproofer | |
run: | | |
bundle exec htmlproofer ./_site |