File tree Expand file tree Collapse file tree 3 files changed +29
-4
lines changed Expand file tree Collapse file tree 3 files changed +29
-4
lines changed Original file line number Diff line number Diff line change 99
1010jobs :
1111 build-macos :
12- name : build-macos
12+ name : build-macos with Go ${{ matrix.go-version }}
1313 runs-on : macos-10.15
14+ strategy :
15+ matrix :
16+ include :
17+ - go-version : ' 1.17'
18+ go-stable : true
19+ - go-version : ' 1.18'
20+ go-stable : false
1421 steps :
1522 - name : Install Go
1623 uses : actions/setup-go@v2
1724 with :
18- go-version : ' 1.17'
25+ go-version : ${{ matrix.go-version }}
26+ stable : ${{ matrix.go-stable }}
1927 - name : Install Dependencies
2028 shell : bash
2129 run : |
Original file line number Diff line number Diff line change @@ -137,7 +137,15 @@ jobs:
137137 assert-test-linux :
138138 # Run all tests that can run on Linux, with LLVM assertions enabled to catch
139139 # potential bugs.
140+ name : assert-test-linux with Go ${{ matrix.go-version }}
140141 runs-on : ubuntu-latest
142+ strategy :
143+ matrix :
144+ include :
145+ - go-version : ' 1.17'
146+ go-stable : true
147+ - go-version : ' 1.18'
148+ go-stable : false
141149 steps :
142150 - name : Checkout
143151 uses : actions/checkout@v2
@@ -159,7 +167,8 @@ jobs:
159167 - name : Install Go
160168 uses : actions/setup-go@v2
161169 with :
162- go-version : ' 1.17'
170+ go-version : ${{ matrix.go-version }}
171+ stable : ${{ matrix.go-stable }}
163172 - name : Install Node.js
164173 uses : actions/setup-node@v2
165174 with :
Original file line number Diff line number Diff line change 1010jobs :
1111 build-windows :
1212 runs-on : windows-2019
13+ strategy :
14+ matrix :
15+ include :
16+ - go-version : ' 1.17'
17+ go-stable : true
18+ - go-version : ' 1.18'
19+ go-stable : false
1320 steps :
1421 - name : Install Go
1522 uses : actions/setup-go@v2
1623 with :
17- go-version : ' 1.17'
24+ go-version : ${{ matrix.go-version }}
25+ stable : ${{ matrix.go-stable }}
1826 - uses : MinoruSekine/setup-scoop@v1
1927 - name : Install Dependencies
2028 shell : bash
You can’t perform that action at this time.
0 commit comments