Skip to content

Bump actions/checkout from 4 to 6 #1

Bump actions/checkout from 4 to 6

Bump actions/checkout from 4 to 6 #1

Workflow file for this run

name: Test and build
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
workflow_call:
jobs:
test:
runs-on: ${{matrix.os}}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- windows-latest
- macos-latest
python-version: ['3.14']
steps:
- uses: actions/checkout@v6
- uses: astral-sh/setup-uv@v7
with:
enable-cache: true
prune-cache: false
activate-environment: true
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync
- name: Run mypy
run: mypy .
- name: Run tests
run: pytest