Skip to content

chore(python): enable python 3.13 for tests #218

chore(python): enable python 3.13 for tests

chore(python): enable python 3.13 for tests #218

Workflow file for this run

on:
pull_request:
push:
branches: ["master"]
workflow_dispatch: # Allows you to run this workflow manually from the Actions tab
jobs:
main:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [ "3.9", "3.13" ] # Lowest and highest.
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip" # caching pip dependencies
- run: pip install .
- run: pip install .[dev]
- uses: pre-commit/[email protected]
- uses: actions/upload-artifact@v4
with:
path: ./tests/data/*.svg
name: generated-testdata-py${{ matrix.python-version }}
compression-level: 9
retention-days: 9