We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52009d3 commit b2234f2Copy full SHA for b2234f2
.github/workflows/ci.yaml
@@ -7,6 +7,33 @@ on:
7
pull_request:
8
9
jobs:
10
+ build:
11
+ name: Build
12
+ runs-on: ubuntu-latest
13
+ strategy:
14
+ fail-fast: false
15
+ matrix:
16
+ include:
17
+ - goos: js
18
+ goarch: wasm
19
+ - goos: aix
20
+ goarch: ppc64
21
+
22
+ steps:
23
+ - name: Set up Go
24
+ uses: actions/setup-go@v3
25
+ with:
26
+ go-version: 1.19
27
28
+ - name: Checkout code
29
+ uses: actions/checkout@v3
30
31
+ - name: Build
32
+ run: go build .
33
+ env:
34
+ GOOS: ${{ matrix.goos }}
35
+ GOARCH: ${{ matrix.goarch }}
36
37
test:
38
name: Test
39
runs-on: ${{ matrix.os }}
0 commit comments