Skip to content

fix: add python 3.13 support #1198

fix: add python 3.13 support

fix: add python 3.13 support #1198

Workflow file for this run

name: Coverage report
on: push
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up python 3.13
uses: actions/setup-python@v5
with:
python-version: 3.13
cache: pip
- name: Install dependencies
run: |
pip install -U pip nox poetry poetry-plugin-export
pip --version
nox --version
poetry --version
poetry self show plugins
- name: Run nox workflow
run: nox --sessions "tests" --python "3.13" coverage
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}