Skip to content

Commit

Permalink
try with an if
Browse files Browse the repository at this point in the history
  • Loading branch information
gionn committed Aug 1, 2024
1 parent fe94545 commit b1acc72
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,10 @@ jobs:

compose-test:
name: compose-test ${{ matrix.docker-compose-file }}
needs: build-test
needs:
- build-cache-check
- build-test
if: always() && (needs.build-test.result == 'success' || needs.build-test.result == 'skipped')
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down

0 comments on commit b1acc72

Please sign in to comment.