Skip to content

Add 🐍 version 3.13 to build-and-test matrix #1451

Add 🐍 version 3.13 to build-and-test matrix

Add 🐍 version 3.13 to build-and-test matrix #1451

Workflow file for this run

name: CI
on:
pull_request:
branches:
- develop
jobs:
build-and-test:
runs-on: ubuntu-latest
env:
FLASK_APP: OpenOversight.app
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13-rc"]
steps:
- uses: actions/checkout@v3
- name: Run tests
run: PYTHON_VERSION=${{ matrix.python-version }} make test_with_version
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.11"
- uses: pre-commit/[email protected]