Skip to content

chore: run CI on Python 3.14; officially support 3.14 #182

chore: run CI on Python 3.14; officially support 3.14

chore: run CI on Python 3.14; officially support 3.14 #182

Workflow file for this run

name: "Coverage"
on:
push:
branches: [main]
pull_request: {}
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: "3.14"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Run Tests and Record Coverage
run: |
tox -e coverage