Skip to content

Commit

Permalink
feat(15-matrices): add example job for include
Browse files Browse the repository at this point in the history
  • Loading branch information
lauromueller committed Nov 15, 2023
1 parent a38434a commit c451986
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/15-matrices.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
steps:
- name: Setup node
uses: actions/setup-node@v3
with:
with:
node-version: ${{ matrix.node-version }}
- name: Fail if experimental
if: matrix.tag == 'experimental'
Expand All @@ -34,3 +34,14 @@ jobs:
sleep 10
- name: Upload test results
run: echo "Uploading test results"
include-example:
name: ${{ matrix.color }}-${{ matrix.shape }}-${{ matrix.size }}
runs-on: ubuntu-latest
strategy:
matrix:
color: [red, green]
shape: [circle, square]
size: [small, large]
include:
- color: red
shape: triangle

0 comments on commit c451986

Please sign in to comment.