Skip to content

Commit

Permalink
fix matrix variable names
Browse files Browse the repository at this point in the history
  • Loading branch information
samos123 committed Jun 26, 2024
1 parent 1917b2a commit 8da8474
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 8da8474

Please sign in to comment.