Replace Pelican with Zola (#32) #73
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: Document Validation | |
on: | |
# on demand or on every pull request/push | |
repository_dispatch: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
jobs: | |
linkcheck: | |
name: Link Checker | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- name: checkout | |
uses: actions/[email protected] | |
with: | |
submodules: true | |
- name: Restore lychee cache | |
uses: actions/[email protected] | |
with: | |
path: .lycheecache | |
key: cache-lychee-${{ github.sha }} | |
restore-keys: cache-lychee- | |
- name: Check links | |
uses: lycheeverse/[email protected] | |
env: | |
GITHUB_TOKEN: ${{secrets.LYCHEE_TOKEN}} | |
with: | |
args: --exclude='^file://.*$' --exclude='^http://rawpixels.net/.*$' --exclude='^http://rawpixels.net/.*$' --exclude='^https://twitter.com/.*$' --exclude='^https://ctftime.org/.*$' --cache --max-cache-age 1w --exclude-all-private --threads 10 --timeout 30 --retry-wait-time 60 --user-agent 'Mozilla/5.0 (Windows NT x.y; rv:10.0) Gecko/20100101 Firefox/10.0' --no-progress 'content/**/*.md' | |
fail: true | |
- name: Check anchors (setup) | |
uses: taiki-e/install-action@v2 | |
with: | |
tool: [email protected] | |
- name: Check anchors (setup) | |
run: | | |
zola check | |
spellcheck: | |
name: Spell Checker | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- name: checkout | |
uses: actions/[email protected] | |
- name: Spellcheck | |
uses: rojopolis/[email protected] | |
with: | |
task_name: Markdown | |
config_path: .github/spellcheck.yml | |
output_file: spellcheck-output.txt | |
- if: '!cancelled()' | |
run: | | |
if [ -f spellcheck-output.txt ]; then | |
python .github/scripts/ci_spellcheck_format.py spellcheck-output.txt >> ${GITHUB_STEP_SUMMARY} | |
fi |