We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33d6a29 commit c64e6deCopy full SHA for c64e6de
.github/workflows/push.yml
@@ -10,19 +10,15 @@ jobs:
10
test:
11
runs-on: ubuntu-latest
12
steps:
13
+ - name: Checkout code
14
+ uses: actions/checkout@v4
15
- name: Install Go
- uses: actions/setup-go@v2
16
+ uses: actions/setup-go@v5
17
with:
- go-version: 1.21.x
- - name: Checkout code
18
- uses: actions/checkout@v2
+ go-version-file: 'go.mod'
19
- name: Test
20
run: go test -race ./...
21
- name: Vet
22
run: go vet ./...
23
- name: Mod verify
24
run: go mod verify
25
- - name: Staticcheck
26
- run: |
27
- go get honnef.co/go/tools/cmd/staticcheck
28
- staticcheck ./...
go.mod
@@ -1,6 +1,6 @@
1
module github.com/davecheney/httpstat
2
3
-go 1.21
+go 1.23
4
5
require github.com/fatih/color v1.18.0
6
0 commit comments