Bump actions/setup-python from 6 to 7 #104
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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| package_check: | |
| if: "github.repository == 'MDAnalysis/mdanalysis-sphinx-theme'" | |
| name: some packaging checks | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] | |
| steps: | |
| - uses: actions/checkout@v7 | |
| with: | |
| submodules: 'true' | |
| - uses: actions/setup-python@v7 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: build | |
| shell: bash | |
| run: | | |
| pipx run build | |
| - name: twine check | |
| shell: bash | |
| run: | | |
| pipx run twine check --strict ./dist/*tar.gz | |
| - name: pip check | |
| shell: bash | |
| run: | | |
| pip install -e . | |
| pip check |