This repository has been archived by the owner on Oct 16, 2024. It is now read-only.
[pre-commit.ci] pre-commit autoupdate #133
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: Tests | |
on: | |
push: | |
branches: [ master ] | |
tags: [ '[0-9]+.[0-9]+.[0-9]+*' ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
python-version: ['3.7', '3.8', '3.9', '3.10'] | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Installation (deps and package) | |
run: | | |
pip install . -r tests/requirements.txt | |
- name: Linters | |
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.7' | |
run: | | |
pip install pre-commit | |
pre-commit run -a | |
- name: Test with Ward | |
run: | | |
coverage run -m ward | |
coverage report --fail-under=95 | |
- name: Report coverage | |
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.7' | |
uses: codecov/codecov-action@v2 | |
pypi-publish: | |
# Only publish if all other jobs succeed | |
needs: [ build ] | |
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags') | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: '3.8' | |
- name: Install build and publish tools | |
run: | | |
pip install build twine | |
- name: Build and check | |
run: | | |
rm -rf dist/ && python -m build | |
twine check --strict dist/* | |
- name: Publish | |
run: | | |
twine upload dist/* | |
env: | |
TWINE_USERNAME: __token__ | |
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }} |