Skip to content

Bump actions/checkout from 4 to 6 #60

Bump actions/checkout from 4 to 6

Bump actions/checkout from 4 to 6 #60

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Pytesting
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: Install dependencies
run: uv sync --locked --all-extras
- name: Lint with Ruff
run: uv run ruff check --output-format=github .
- name: Test with pytest and coverage
run: uv run pytest --cov=./ --cov-report=term