Skip to content

chore(deps): bump sqlalchemy from 2.0.35 to 2.0.36 in the runtime-dependencies group #48

chore(deps): bump sqlalchemy from 2.0.35 to 2.0.36 in the runtime-dependencies group

chore(deps): bump sqlalchemy from 2.0.35 to 2.0.36 in the runtime-dependencies group #48

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.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
steps:
- name: Checkout code
uses: actions/[email protected]
- name: Set up Python ${{ matrix.python-version }}
uses: actions/[email protected]
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