Skip to content

chore: Drop Python 3.7 and 3.8 #54

chore: Drop Python 3.7 and 3.8

chore: Drop Python 3.7 and 3.8 #54

Workflow file for this run

name: Tests
on:
pull_request: {}
push:
branches: [master]
workflow_dispatch:
inputs: {}
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
steps:
- name: Checkout code
uses: actions/checkout@v4.2.2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5.3.0
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
cache: "pip"
cache-dependency-path: |
**/pyproject.toml
- name: Install dependencies
run: |
pip install .[dev]
- name: Run tests
env:
SQLALCHEMY_WARN_20: "1"
run: |
pytest --config config.json tests