Skip to content

chore(deps): bump actions/checkout from 6.0.1 to 6.0.2 #320

chore(deps): bump actions/checkout from 6.0.1 to 6.0.2

chore(deps): bump actions/checkout from 6.0.1 to 6.0.2 #320

Workflow file for this run

name: Python Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions: {}
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Install the latest version of uv
uses: astral-sh/setup-uv@61cb8a9741eeb8a550a1b8544337180c0fc8476b # v7.2.0
- uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- run: uv run mypy -p flake8_sqlalchemy
- run: uv run pytest
- run: uv build