Skip to content

Test on Python 3.12 #25

Test on Python 3.12

Test on Python 3.12 #25

Workflow file for this run

name: build
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.9', '3.10', '3.11', '3.12' ]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install hatch
run: pip install hatch --upgrade
- name: Test with pytest
run: |
hatch run tests
hatch run codecov
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3