Skip to content

GHA: pin by hash (#58) #168

GHA: pin by hash (#58)

GHA: pin by hash (#58) #168

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"]
steps:
- name: clone the repository
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
with:
persist-credentials: false
- name: setup environment
uses: astral-sh/setup-uv@eac588ad8def6316056a12d4907a9d4d84ff7a3b # 7.3.0
with:
python-version: "${{ matrix.python-version }}"
- name: run tests
run: |
uv run -m pytest -rf --cov=minimum_versions