--- name: ci on: push: branches: - main jobs: lint_and_test: runs-on: docker container: image: ghcr.io/astral-sh/uv:alpine steps: - uses: actions/checkout@v4 - run: uv python install # Gets Python version from pyproject.toml - run: uv sync - run: ruff check - run: uv run pytest test env: ENVIRONMENT: testing