Bump version 0.7.0 #213
Workflow file for this run
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: CI | |
on: | |
push: | |
pull_request: | |
jobs: | |
Quality: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: '3.11' | |
- uses: pre-commit/[email protected] | |
Tests: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy-3.8", "pypy-3.9"] | |
env: | |
OS: ${{ matrix.os }} | |
PYTHON: ${{ matrix.python-version }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install setuptools | |
run: pip install -U setuptools | |
if: ${{ matrix.python-version == '3.12' }} | |
- name: Install test requirements | |
run: pip install -r test-requirements.txt | |
- name: Run tests | |
run: python setup.py test --addopts "--cov-report xml" | |
- name: Upload coverage | |
uses: codecov/codecov-action@v1 | |
with: | |
env_vars: OS,PYTHON | |
Release: | |
runs-on: ubuntu-latest | |
needs: [Quality, Tests] | |
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.11 | |
- name: Build source distribution | |
run: python setup.py sdist | |
- name: Build wheel | |
run: | | |
pip install wheel | |
python setup.py bdist_wheel | |
- name: Publish source package on PyPI | |
uses: pypa/gh-action-pypi-publish@master | |
with: | |
user: __token__ | |
password: ${{ secrets.pypi_password }} |