Skip to content

debug the release trigger #152

debug the release trigger

debug the release trigger #152

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@v6
with:
persist-credentials: false
- name: setup environment
uses: astral-sh/setup-uv@681c641aba71e4a1c380be3ab5e12ad51f415867 # 7.1.6
with:
python-version: "${{ matrix.python-version }}"
- name: run tests
run: |
uv run -m pytest -rf --cov=minimum_versions