File tree Expand file tree Collapse file tree 1 file changed +19
-6
lines changed Expand file tree Collapse file tree 1 file changed +19
-6
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ name: main
3
3
on : ["push", "pull_request"]
4
4
5
5
jobs :
6
-
7
6
lint :
8
7
name : " Lint"
9
8
strategy :
@@ -17,18 +16,32 @@ jobs:
17
16
- uses : actions/checkout@v1
18
17
with :
19
18
fetch-depth : 1
20
-
21
19
- uses : WillAbides/setup-go-faster@v1.14.0
22
20
with :
23
21
go-version : ${{ matrix.go }}
24
-
25
22
- run : " make vet"
26
-
27
- - run : " make test"
28
-
29
23
- uses : dominikh/staticcheck-action@v1.3.1
30
24
with :
31
25
version : " latest"
32
26
install-go : false
33
27
cache-key : ${{ matrix.go }}
34
28
working-directory : ${{ matrix.dir }}
29
+
30
+ test :
31
+ name : " Test"
32
+ strategy :
33
+ fail-fast : false
34
+ matrix :
35
+ os : ["windows-latest", "ubuntu-latest", "macOS-latest"]
36
+ go : ["1.22.x"]
37
+ dir : ["./"]
38
+ runs-on : ${{ matrix.os }}
39
+ steps :
40
+ - uses : actions/checkout@v1
41
+ with :
42
+ fetch-depth : 1
43
+ - uses : WillAbides/setup-go-faster@v1.14.0
44
+ with :
45
+ go-version : ${{ matrix.go }}
46
+ - run : " make test"
47
+
You can’t perform that action at this time.
0 commit comments