Reveal T8 and other minor T8 adjustments #60
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
| --- | |
| name: Continuous Integration (CI) | |
| on: | |
| push: | |
| branches: [master] | |
| permissions: | |
| contents: write | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4.1.1 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-python@v5.0.0 | |
| with: | |
| python-version: 3.12 | |
| cache: pip | |
| - run: pip install -r requirements.txt | |
| - run: mkdocs gh-deploy --force |