Skip to content

new formatting rules #202

new formatting rules

new formatting rules #202

Workflow file for this run

name: Run Pytest
on:
workflow_dispatch:
push:
paths-ignore:
- ".github/**"
pull_request:
paths-ignore:
- ".github/**"
jobs:
build:
name: Run tests
runs-on: ubuntu-latest
strategy:
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@v5
with:
enable-cache: true
cache-dependency-glob: "uv.lock"
python-version: ${{ matrix.python-version }}
- name: Install the project
run: uv sync --all-extras --dev
- uses: pavelzw/pytest-action@v2
with:
custom-pytest: uv run pytest