Update setuptools requirement from >=83.0.0 to >=84.0.0 #685
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: | |
| tags: | |
| - 'v*' | |
| branches: | |
| - master | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| permissions: | |
| contents: write | |
| id-token: write # IMPORTANT for OIDC | |
| 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 | |
| sudo apt-get update -y | |
| sudo apt-get install -y latexmk texlive-latex-extra | |
| sudo apt-get install -y graphviz | |
| sudo apt-get install -y plantuml | |
| - name: Run test | |
| run: tox -e py | |
| - name: Upload coverage to Qlty | |
| if: matrix.python-version == '3.12' | |
| uses: qltysh/qlty-action/coverage@v1 | |
| with: | |
| oidc: true | |
| files: coverage.lcov | |
| - name: Build documentation with Sphinx version 7.4 | |
| id: sphinx74 | |
| env: | |
| PRIVATE_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: tox -e sphinx7.4 | |
| continue-on-error: true | |
| - name: Build documentation with Sphinx >= 8.2.3 | |
| id: sphinx_latest | |
| env: | |
| PRIVATE_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| # Sphinx 8.2 dropped support for Python 3.10 | |
| if: matrix.python-version != '3.10' | |
| run: tox -e sphinx-latest | |
| continue-on-error: true | |
| - name: Upload warning files | |
| if: matrix.python-version == '3.12' | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: sphinx-warnings | |
| path: sphinx-*_warnings.txt | |
| - name: Check documentation build status | |
| run: | | |
| if [[ "${{ steps.sphinx74.outcome }}" == "failure" ]]; then | |
| echo "Sphinx 7.4 documentation build failed" | |
| exit 1 | |
| fi | |
| if [[ "${{ steps.sphinx_latest.outcome }}" == "failure" ]]; then | |
| echo "Latest Sphinx documentation build failed" | |
| exit 1 | |
| fi | |
| - name: Static checks | |
| if: matrix.python-version == '3.10' | |
| run: tox -e check | |
| - name: Upload HTML documentation | |
| if: matrix.python-version == '3.10' | |
| 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 | |
| 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.12' | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade build twine | |
| - name: Build and publish | |
| env: | |
| TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} | |
| TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} | |
| run: | | |
| python -m build | |
| twine upload dist/* |