Skip to content

Add Python 3.13 support (#220) #563

Add Python 3.13 support (#220)

Add Python 3.13 support (#220) #563

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
Analyze:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
version: [3.9, '3.10', '3.11', '3.12', '3.13']
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.version }}
id: setup-python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.version }}
- name: Install Tox
run: |
pip install "tox>=4.13.0,<5"
- name: Lint Codebase
run: |
tox -e lint