The const_mut_refs
feature is stable now and no longer required
#530
Workflow file for this run
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: Check Links | |
on: | |
push: | |
branches: | |
- "*" | |
- "!staging.tmp" | |
tags: | |
- "*" | |
pull_request: | |
schedule: | |
- cron: "0 0 1/4 * *" # every 4 days | |
jobs: | |
zola_check: | |
name: "Zola Link Check" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: "Download Zola" | |
run: curl -sL https://github.com/getzola/zola/releases/download/v0.19.0/zola-v0.19.0-x86_64-unknown-linux-gnu.tar.gz | tar zxv | |
- name: "Run zola check" | |
run: ../zola check | |
working-directory: "blog" |