Skip to content

Commit

Permalink
fix(ci): fix changed file conditions for run test workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
bdeneux committed Dec 7, 2022
1 parent 528a641 commit 3496204
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
test-go:
runs-on: ubuntu-22.04
needs: check-tests
if: needs.check-tests.status
if: needs.check-tests.outputs.status
steps:
- name: Check out repository
uses: actions/checkout@v3
Expand All @@ -53,7 +53,7 @@ jobs:
runs-on: ubuntu-22.04
timeout-minutes: 10
needs: check-tests
if: needs.check-tests.status
if: needs.check-tests.outputs.status
steps:
- name: Check out repository
uses: actions/checkout@v3
Expand Down

0 comments on commit 3496204

Please sign in to comment.