Skip to content

Python 3.12 support added (#312) #1429

Python 3.12 support added (#312)

Python 3.12 support added (#312) #1429

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3.5.3
- name: Set up Python${{ matrix.python-version }}
uses: actions/setup-python@v4.6.1
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install Dependencies for Python${{ matrix.python-version }}
run: |
python -m pip install --upgrade pip
python -m pip install tox
- name: Test with pytest for Python${{ matrix.python-version }}
run: |
tox -e ${{ matrix.python-version }}
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.5.3
- name: Set up Python${{ matrix.python-version }}
uses: actions/setup-python@v4.6.1
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .[test]
- name: Generate coverage report
run: |
python -m pytest --cov=./ --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1.0.14
with:
token: ${{secrets.CODECOV_TOKEN }}