File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed
Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -40,17 +40,22 @@ jobs:
4040 working-directory : .github/workflows/
4141
4242 build-and-test :
43- name : " build-and-test (Go ${{ matrix.go }}, Ruby ${{ matrix.ruby }})"
43+ name : " build-and-test (Go ${{ matrix.go }}, Ruby ${{ matrix.ruby }}), Runner ${{ matrix.runner }} "
4444
4545 needs :
4646 - generate-matrix
4747
48- runs-on : ubuntu-latest
48+ runs-on : ${{ matrix.runner }}
4949
5050 strategy :
5151 fail-fast : false
5252
53- matrix : ${{ fromJSON(needs.generate-matrix.outputs.matrix) }}
53+ matrix :
54+ go : ${{ fromJSON(needs.generate-matrix.outputs.matrix).go }}
55+ ruby : ${{ fromJSON(needs.generate-matrix.outputs.matrix).ruby }}
56+ runner :
57+ - ubuntu-latest
58+ - macos-latest
5459
5560 steps :
5661 - uses : actions/checkout@v4
You can’t perform that action at this time.
0 commit comments