Skip to content

Bump the patches group with 2 updates #1067

Bump the patches group with 2 updates

Bump the patches group with 2 updates #1067

Workflow file for this run

name: Unit Tests
permissions: {}
on:
push:
pull_request:
schedule:
- cron: '0 10 * * 3,6'
jobs:
pytest:
runs-on: ubuntu-latest
permissions:
contents: read
strategy:
matrix:
python-version: [
'3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14',
'pypy-3.8', 'pypy-3.10'
]
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1
with:
persist-credentials: false
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[test]
- name: Test with pytest
run: |
pytest --durations=0 --cov=./
- name: Upload coverage to Codecov
uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f