Navigation Menu

Skip to content

Commit

Permalink
Add a new 'Zola Check' CI workflow
Browse files Browse the repository at this point in the history
This also checks external links.

We add it as a separate job because it seems to be still buggy.
  • Loading branch information
phil-opp committed Sep 29, 2019
1 parent ffdd1ab commit 46386c7
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/build-site.yml
Expand Up @@ -39,6 +39,20 @@ jobs:
name: generated_site
path: blog/public

zola_check:
name: "Zola Check"
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1

- name: 'Download Zola'
run: curl -sL https://github.com/getzola/zola/releases/download/v0.9.0/zola-v0.9.0-x86_64-unknown-linux-gnu.tar.gz | tar zxv

- name: "Run zola check"
run: ../zola check
working-directory: "blog"

check_spelling:
name: "Check Spelling"
runs-on: ubuntu-latest
Expand Down

0 comments on commit 46386c7

Please sign in to comment.