Skip to content

Commit

Permalink
(WIP) test
Browse files Browse the repository at this point in the history
  • Loading branch information
Godin committed Jul 12, 2024
1 parent 407df89 commit f1211e5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/sum.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,19 @@ jobs:
if: ${{ false }}
steps:
- run: echo three
test-matrix:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- code: 0
- code: 1
steps:
- run: exit ${{ matrix.code }}
# https://github.com/actions/runner/issues/2566#issuecomment-1522574653
sum:
needs: [one, two, three]
needs: [one, two, three, test-matrix]
if: ${{ !cancelled() }}
runs-on: ubuntu-latest
steps:
Expand Down
Empty file added test.txt
Empty file.

0 comments on commit f1211e5

Please sign in to comment.