Update 2020-06-15-playing_with_self_reference_pml4_entry.md #61
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] | |
- 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='^http://rawpixels.net/.*$' --exclude='^http://rawpixels.net/.*$' --exclude='^https://twitter.com/.*$' --exclude='^https://ctftime.org/.*$' --cache --max-cache-age 1w --exclude-all-private --exclude-mail --threads 4 --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 | |
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 scripts/ci_spellcheck_format.py spellcheck-output.txt >> ${GITHUB_STEP_SUMMARY} | |
fi |