[pre-commit.ci] pre-commit autoupdate #136
This file contains 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: | |
pull_request: | |
push: | |
branches: | |
- master | |
tags: | |
- "*" | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
max-parallel: 5 | |
matrix: | |
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up PDM for Python ${{ matrix.python-version }} | |
uses: pdm-project/setup-pdm@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
pdm sync -d -G dev | |
# Linting is taken care of by pre-commit | |
# in a different github action | |
- name: Run tests | |
run: | | |
pdm run -v pytest --cov-report term-missing --cov-report xml --cov=docopt --mypy | |
- name: Upload coverage | |
uses: codecov/codecov-action@v2 | |
with: | |
name: Python ${{ matrix.python-version }} | |
fail_ci_if_error: true | |
- name: Build wheels and sdist | |
run: | | |
pdm build | |
- name: Save artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
# These are pure-python, so we don't need to worry about platform | |
name: wheels | |
# name: Python ${{ matrix.python-version }} | |
path: | | |
dist/*.whl | |
dist/*.tar.gz | |
release: | |
needs: | |
- test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download artifacts | |
uses: actions/download-artifact@v2 | |
with: | |
name: wheels | |
path: dist | |
- name: Upload packages to Jazzband | |
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') | |
uses: pypa/gh-action-pypi-publish@master | |
with: | |
user: jazzband | |
password: ${{ secrets.JAZZBAND_RELEASE_KEY }} | |
repository_url: https://jazzband.co/projects/docopt-ng/upload |