Skip to content

Support CPython 3.13 #304

Support CPython 3.13

Support CPython 3.13 #304

Workflow file for this run

name: lint
on:
push:
branches: [ "dev" ]
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [ "3.13.0rc.3" ]
steps:
- uses: actions/checkout@v4
- name: set up python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: install dependencies & cereggii
run: |
python -m pip install --upgrade pip
pip install .[dev]
- name: black
run: black --check .
- name: lint
run: |
ruff .