From 8da84749c833c63aedce4ba0c6d24e29933238d0 Mon Sep 17 00:00:00 2001 From: Sam Stoelinga Date: Wed, 26 Jun 2024 16:23:19 -0700 Subject: [PATCH] fix matrix variable names --- .github/workflows/build-test.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-test.yaml b/.github/workflows/build-test.yaml index b2daf96e..def6580b 100644 --- a/.github/workflows/build-test.yaml +++ b/.github/workflows/build-test.yaml @@ -10,7 +10,7 @@ jobs: pre-commit: runs-on: ubuntu-latest outputs: - pytest-files: ${{ steps.find-test-files.outputs.pytest-files }} + matrix: ${{ steps.set-matrix.outputs.matrix }} steps: - uses: actions/checkout@v3 @@ -29,9 +29,9 @@ jobs: - name: Run pytype run: pytype -j auto . - name: define pytest testing matrix - id: matrix + id: set-matrix run: | - echo "matrix=$(python3 .github/workflows/set_matrix.py)" + echo "matrix=$(python3 .github/workflows/set_matrix.py)" >> $GITHUB_OUTPUT build-and-test: needs: pre-commit