Skip to content

Keep process command lines out of errors #16

Keep process command lines out of errors

Keep process command lines out of errors #16

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
test:
runs-on: macos-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v6
with:
python-version: ${{ matrix.python-version }}
- run: uv sync --locked
- run: uv run ruff check .
- run: uv run pytest