Remove ataraxia-zola #367
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: test | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| jobs: | |
| generate-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout latest | |
| uses: actions/checkout@master | |
| with: | |
| submodules: "recursive" | |
| - name: Setup Python 3 | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: '3.10' | |
| - name: Install Python requirements | |
| run: pip install -r requirements.txt | |
| - name: Run the generator script | |
| run: python generate_docs.py site |