We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfdf6b8 commit 8e88766Copy full SHA for 8e88766
.github/workflows/test.yml
@@ -3,10 +3,12 @@ name: test
3
on: [push, pull_request]
4
jobs:
5
build:
6
- runs-on: ubuntu-latest
7
strategy:
+ fail-fast: false
8
matrix:
9
go: [ '1.18', '1.19', '1.20', '1.21' ]
10
+ os: [macos-latest, ubuntu-latest]
11
+ runs-on: ${{ matrix.os }}
12
steps:
13
- uses: actions/checkout@v3
14
- uses: actions/setup-go@v3
@@ -17,6 +19,12 @@ jobs:
17
19
version: v1.13.0
18
20
install-only: true
21
22
+ - name: Setup docker (missing on MacOS)
23
+ if: contains(runner.os, 'macos')
24
+ run: |
25
+ brew install docker
26
+ colima start
27
+
28
- run: |
29
go version
30
go env
0 commit comments