File tree 2 files changed +28
-1
lines changed
2 files changed +28
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : Go
2
+
3
+ on :
4
+ push :
5
+ branches : [ "main" ]
6
+ pull_request :
7
+ branches : [ "main" ]
8
+
9
+ jobs :
10
+ build :
11
+
12
+ runs-on : ubuntu-latest
13
+
14
+ steps :
15
+ - uses : actions/checkout@v3
16
+ - uses : actions/setup-go@v3
17
+ with :
18
+ go-version : ' 1.21'
19
+ check-latest : true
20
+
21
+ - name : Download Dependencies
22
+ run : go get
23
+
24
+ - name : Lint
25
+ run : go vet
26
+
27
+ - name : Test
28
+ run : go test -v
Original file line number Diff line number Diff line change 1
1
github.com/jessevdk/go-flags v1.5.0 h1:1jKYvbxEjfUl0fmqTCOfonvskHHXMjBySTLW4y9LFvc =
2
2
github.com/jessevdk/go-flags v1.5.0 /go.mod h1:Fw0T6WPc1dYxT4mKEZRfG5kJhaTDP9pj1c2EWnYs/m4 =
3
- golang.org/x/sys v0.0.0-20210320140829-1e4c9ba3b0c4 h1:EZ2mChiOa8udjfp6rRmswTbtZN/QzUQp4ptM4rnjHvc =
4
3
golang.org/x/sys v0.0.0-20210320140829-1e4c9ba3b0c4 /go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs =
5
4
golang.org/x/sys v0.15.0 h1:h48lPFYpsTvQJZF4EKyI4aLHaev3CxivZmv7yZig9pc =
6
5
golang.org/x/sys v0.15.0 /go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA =
You can’t perform that action at this time.
0 commit comments