Skip to content

test: make shared fixtures importable in CI #3

test: make shared fixtures importable in CI

test: make shared fixtures importable in CI #3

Workflow file for this run

name: CI
on:
push:
pull_request:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v6
with:
python-version: "3.11"
- uses: astral-sh/setup-uv@v6
with:
python-version: "3.11"
- name: Install
run: uv pip install --system -e ".[dev]"
- name: Lint
run: ruff check .
- name: Test
run: pytest