From c4f132f5da5398a702a1e12f60c8206e166a6cd8 Mon Sep 17 00:00:00 2001 From: Luke Shingles Date: Mon, 20 Jan 2025 10:57:28 +0100 Subject: [PATCH] Update pytest.yml --- .github/workflows/pytest.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 111b6e3..cbce903 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -12,7 +12,8 @@ on: jobs: lint: - runs-on: macos-15 + name: Format, lint, and type check + runs-on: ubuntu-24.04 steps: - name: Checkout Code uses: actions/checkout@v4 @@ -29,7 +30,7 @@ jobs: run: | uv sync --frozen source .venv/bin/activate - uv pip install --compile-bytecode --editable .[dev] + uv pip install --compile-bytecode --editable . - name: Run Ruff if: always()