Document how to run the recovery commands in u-boot #58
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
on: | |
- push | |
- pull_request | |
jobs: | |
build: | |
name: Web site | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
- run: pip install -r requirements.txt | |
- run: nikola build | |
- run: pip install html5validator | |
- run: html5validator --root output | |
checks: | |
name: Checks | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: find -name "*.yaml" -exec yamllint -s {} \; | |
- uses: actions/setup-python@v4 | |
- run: sudo apt-get install aspell aspell-en | |
- run: pip install pyspelling | |
- run: pyspelling -c .pyspelling.yaml | |
- run: pip install codespell | |
- run: find -name "*.md" -exec codespell -L sowe {} \; |