Skip to content

Bump actions/checkout from 7.0.0 to 7.0.1 (#84) #222

Bump actions/checkout from 7.0.0 to 7.0.1 (#84)

Bump actions/checkout from 7.0.0 to 7.0.1 (#84) #222

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions: {}
jobs:
ci:
name: tests
runs-on: [ubuntu-latest]
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12", "3.13", "3.14"]
steps:
- name: clone the repository
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: setup environment
uses: astral-sh/setup-uv@11f9893b081a58869d3b5fccaea48c9e9e46f990 # 8.3.2
with:
python-version: "${{ matrix.python-version }}"
- name: run tests
run: |
uv run -m pytest -rf --cov=minimum_versions