Skip to content

chore(deps): bump ruff from 0.15.13 to 0.15.14 in the python-deps group #13

chore(deps): bump ruff from 0.15.13 to 0.15.14 in the python-deps group

chore(deps): bump ruff from 0.15.13 to 0.15.14 in the python-deps group #13

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
branches: ["*"]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Unit tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.12"
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Install dependencies
run: uv sync --locked --all-extras
- name: Run tests
run: uv run pytest