Skip to content

Bump rusqlite from 0.32.1 to 0.40.1 in /rust #9

Bump rusqlite from 0.32.1 to 0.40.1 in /rust

Bump rusqlite from 0.32.1 to 0.40.1 in /rust #9

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install ruff mypy pytest pytest-asyncio httpx
- name: Lint with ruff
run: ruff check src
- name: Type check with mypy
run: mypy src
- name: Run tests
run: pytest -q