add note on top of each page refering to updated version of this tutorial #183
Workflow file for this run
This file contains hidden or 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
| # documentation: https://help.github.com/en/articles/workflow-syntax-for-github-actions | |
| name: build tutorial | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v2 | |
| - name: set up Python | |
| uses: actions/setup-python@v1 | |
| with: | |
| python-version: 3.9 | |
| - name: Codespell action | |
| uses: codespell-project/actions-codespell@master | |
| with: | |
| check_filenames: true | |
| ignore_words_list: nd | |
| path: docs/ | |
| #- name: Markdown Linting Action | |
| # uses: avto-dev/markdown-lint@v1.2.0 | |
| # with: | |
| # rules: '/lint/rules/changelog.js' | |
| # config: '/lint/config/changelog.yml' | |
| # args: '.' | |
| - name: install mkdocs | |
| run: | | |
| pip install mkdocs mkdocs-material mkdocs-git-revision-date-localized-plugin | |
| mkdocs --version | |
| - name: build tutorial | |
| run: mkdocs build --strict |