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:
40
40
working-directory : .github/workflows/
41
41
42
42
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 }} )"
44
44
45
45
needs :
46
46
- generate-matrix
47
47
48
- runs-on : ubuntu-latest
48
+ runs-on : ${{ matrix.runner }}
49
49
50
50
strategy :
51
51
fail-fast : false
52
52
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
54
59
55
60
steps :
56
61
- uses : actions/checkout@v4
You can’t perform that action at this time.
0 commit comments