Skip to content

Test strategy

Test strategy #3

Workflow file for this run

name: Test strategy
on: workflow_dispatch
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
test-group: [1, 2]
node: [14, 16]
include:
- node: 14
something: "else"
steps:
- run: echo "Mock test logs ${{ strategy.job-index }}"
- run: echo "Mock test logs ${{ matrix.test-group }} ${{ matrix.node }} ${{ matrix.something }}"