Add unit test when we ensure that also the no filename test case gets… #32
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
| name: Test and deploy on tag | |
| on: push | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.10", "3.11", "3.12"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| python -m pip install tox tox-gh-actions | |
| - name: Run test | |
| run: tox -e py | |
| - name: Build documentation with different Sphinx versions | |
| run: tox -e doc | |
| - name: codecov | |
| if: matrix.python-version == 3.12 | |
| run: tox -e codecov | |
| - name: Static checks | |
| if: matrix.python-version == 3.12 | |
| run: tox -e check | |
| - name: Upload HTML documentation | |
| if: matrix.python-version == 3.12 | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: html-doc | |
| path: doc/_build/html | |
| deploy: | |
| if: github.event_name == 'push' && contains(github.ref, 'refs/tags/') | |
| needs: test | |
| runs-on: ubuntu-latest | |
| permissions: | |
| id-token: write | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Download HTML documentation from job 'test' | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: html-doc | |
| path: doc/_build/html | |
| - name: Disable jekyll | |
| run: touch doc/_build/html/.nojekyll | |
| - name: Deploy documentation | |
| uses: JamesIves/github-pages-deploy-action@v4 | |
| with: | |
| branch: gh-pages | |
| folder: doc/_build/html | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.11' | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install build | |
| - name: Build release distributions | |
| run: | | |
| python -m build | |
| - name: Publish release distributions to PyPI | |
| uses: pypa/gh-action-pypi-publish@release/v1 |