Skip to content

Commit

Permalink
get project tests running
Browse files Browse the repository at this point in the history
  • Loading branch information
EthanMarx committed May 25, 2024
1 parent e81fefa commit 1ab4b29
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/project-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ on:
- main

jobs:
changes:
project-changes:
runs-on: ubuntu-latest
outputs:
projects: ${{ steps.filter.outputs.changes }}
projects: ${{ steps.filter.outputs.project-changes }}
steps:
- uses: actions/checkout@v2
- uses: dorny/paths-filter@v2
Expand All @@ -32,7 +32,7 @@ jobs:
strategy:
fail-fast: false # is this desired behavior here?
matrix:
project: ${{ fromJSON(needs.changes.outputs.projects) }}
project: ${{ fromJSON(needs.project-changes.outputs.projects) }}
exclude:
# don't run non-existent .github/workflow tests,
# and exclude projects, whose tests are run in
Expand Down

0 comments on commit 1ab4b29

Please sign in to comment.