Skip to content

Add automatic version tagging #24

Add automatic version tagging

Add automatic version tagging #24

Workflow file for this run

name: tests
on:
push:
branches: ["main"]
tags-ignore: ["v*"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.12, 3.13]
steps:
- uses: actions/checkout@v4
- name: Install uv and set the python version
uses: astral-sh/setup-uv@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install the project
run: uv sync --locked --all-extras --dev
- name: Run tests
run: uv run pytest tests