Skip to content

Add Python 3.13 to test matrix #26

Add Python 3.13 to test matrix

Add Python 3.13 to test matrix #26

Workflow file for this run

name: Test
on: [pull_request, workflow_dispatch]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
fail-fast: false
steps:
- run: |
sudo apt-get update
sudo apt-get install graphviz
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- run: python -m pip install .
- run: mkdir testdir && cd testdir && python -m unittest discover -v refcycle