From fac5a1a8de5a36cea43e0cca003169383a5a815a Mon Sep 17 00:00:00 2001 From: Chris Pappalardo Date: Tue, 1 Oct 2024 08:23:33 -0700 Subject: [PATCH] fix github ci bugs --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1e139d2..1ca62e4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,11 +14,12 @@ jobs: uses: actions/checkout@v4 - name: Run pre-commit run: pre-commit run --all-files + env: + python-version: ["3.10"] test: runs-on: ubuntu-latest strategy: - fail-fast: false matrix: python-version: ["3.10"] steps: @@ -26,5 +27,5 @@ jobs: uses: actions/checkout@v4 - name: Run unit tests run: pytest - with: + env: python-version: ${{ matrix.python-version }}