Skip to content

Address database warnings and deprecated syntax #1409

Address database warnings and deprecated syntax

Address database warnings and deprecated syntax #1409

Workflow file for this run

name: CI
on:
pull_request:
branches:
- develop
jobs:
build-and-test:
runs-on: ubuntu-20.04
env:
FLASK_APP: OpenOversight.app
strategy:
matrix:
python-version: ["3.11", "3.12"]
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]