Skip to content

Hack for python 3.8 compatibility #87

Hack for python 3.8 compatibility

Hack for python 3.8 compatibility #87

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
Quality:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- 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", "pypy-3.8"]
exclude:
- os: windows-latest
python-version: "pypy-3.8"
- os: macos-latest
python-version: "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: 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.8
- 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 }}