File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change 26
26
strategy :
27
27
matrix :
28
28
go-version : [1.16, 1.17, 1.18]
29
+ fail-fast : false
29
30
steps :
30
31
- name : Setup Go ${{ matrix.go-version }}
31
32
uses : actions/setup-go@v3
55
56
matrix :
56
57
os : [macos-latest, windows-latest, ubuntu-latest]
57
58
go-version : [1.16, 1.17, 1.18]
59
+ fail-fast : false
58
60
steps :
59
61
- name : Setup Go ${{ matrix.go-version }}
60
62
uses : actions/setup-go@v3
65
67
- name : Run tests
66
68
run : |
67
69
go test -v -race -cover -short ./...
70
+ build-32bit :
71
+ name : " unit tests (32-bit)"
72
+ runs-on : ${{ matrix.os }}
73
+ strategy :
74
+ matrix :
75
+ os : [windows-latest, ubuntu-latest]
76
+ fail-fast : false
77
+ env :
78
+ GOARCH : 386
79
+ steps :
80
+ - name : Setup Go 1.18
81
+ uses : actions/setup-go@v3
82
+ with :
83
+ go-version : 1.18
84
+ - name : Checkout code
85
+ uses : actions/checkout@v3
86
+ - name : Run tests
87
+ run : |
88
+ go test -v -cover -short ./...
You can’t perform that action at this time.
0 commit comments