Skip to content

Bump the minor-and-patch group across 1 directory with 5 updates #6

Bump the minor-and-patch group across 1 directory with 5 updates

Bump the minor-and-patch group across 1 directory with 5 updates #6

Workflow file for this run

name: CI
# On every pull request, but only on push to main
on:
push:
branches:
- main
tags:
- "*"
pull_request:
env:
LATEST_PY_VERSION: "3.14"
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.13"
- "3.14"
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Install uv
uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0
with:
version: "0.12.*"
enable-cache: true
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --group dev
- name: Run pre-commit
if: ${{ matrix.python-version == env.LATEST_PY_VERSION }}
run: |
uv run pre-commit run --all-files
- name: Run type checks
if: ${{ matrix.python-version == env.LATEST_PY_VERSION }}
run: |
uv run ty check src
# no test needed + no coverage