...
1name: Unsupported
2
3on:
4 push:
5 branches:
6 - "*"
7 pull_request:
8 branches:
9 - "*"
10
11jobs:
12 build:
13 strategy:
14 fail-fast: false
15 matrix:
16 go-version: ["1.20"]
17 runs-on: ubuntu-latest
18
19 steps:
20 - name: Set up Go
21 uses: actions/setup-go@v3
22 with:
23 go-version: ${{ matrix.go-version }}
24 id: go
25
26 - name: Check out code into the Go module directory
27 uses: actions/checkout@v3
28
29 # Although this package doesn't support Windows, we want to verify that
30 # everything builds properly.
31 - name: Verify build for non-UNIX platforms
32 run: go build
33 env:
34 GOOS: windows
View as plain text