Skip to content

chore(deps-dev): bump mypy from 2.1.0 to 2.3.0 in the pip-updates group across 1 directory #1319

chore(deps-dev): bump mypy from 2.1.0 to 2.3.0 in the pip-updates group across 1 directory

chore(deps-dev): bump mypy from 2.1.0 to 2.3.0 in the pip-updates group across 1 directory #1319

Workflow file for this run

---
name: Unit tests
on: # yamllint disable-line rule:truthy
workflow_dispatch:
push:
branches:
- master
- v*
pull_request:
branches:
- master
- v*
schedule:
- cron: '0 22 * * 0'
jobs:
unit-tests:
name: Unit tests
strategy:
matrix:
python_version: ["3.11", "3.12", "3.13", "3.14"]
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
container:
image: ghcr.io/${{ github.repository }}:CI-${{ matrix.python_version }}-msodbc18
credentials:
username: ${{ github.actor }}
password: ${{ secrets.github_token }}
steps:
- uses: actions/checkout@v7
- name: Install uv
run: pip install uv
- name: Install dependencies
run: uv pip install --system -e ".[pyodbc]" --group dev
- name: Run unit tests
run: pytest -n auto -ra -v tests/unit