CI: install task #80
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: Python Tests | |
| on: | |
| push: | |
| branches: | |
| - '*' | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: [3.11, 3.12, 3.13, 3.14] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| check-latest: true | |
| - name: Install task to make use of Taskfile.yml | |
| run: | | |
| sh -c "$(curl --location https://taskfile.dev/install.sh)" -- -d | |
| task --version | |
| - name: Install dependencies | |
| run: | | |
| task dependencies | |
| pip install -U coveralls | |
| - name: Run tests with pytest | |
| run: | | |
| task tests-with-cov | |
| - name: Coveralls | |
| uses: coverallsapp/github-action@v2.3.6 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| file: .coverage | |
| deploy: | |
| needs: test | |
| runs-on: ubuntu-latest | |
| if: github.ref == 'refs/heads/master' | |
| environment: | |
| name: pypi-deployment | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: 3.12 | |
| - name: Install Build Tools | |
| run: | | |
| pip install -U build twine | |
| - name: Set Twine Environment Variables | |
| run: | | |
| echo "TWINE_USERNAME=${{ secrets.PYPI_USERNAME }}" >> $GITHUB_ENV | |
| echo "TWINE_PASSWORD=${{ secrets.PYPI_PASSWORD }}" >> $GITHUB_ENV | |
| - name: Build and Upload to PyPI | |
| run: | | |
| python -m build | |
| twine upload dist/* |