Skip to content

Commit

Permalink
all: fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
davecheney committed Jan 11, 2025
1 parent 33d6a29 commit 1db1f51
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
uses: actions/setup-go@v5
with:
go-version: 1.21.x
go-version-file: 'go.mod'
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Test
run: go test -race ./...
- name: Vet
run: go vet ./...
- name: Mod verify
run: go mod verify
- name: Staticcheck
run: |
go get honnef.co/go/tools/cmd/staticcheck
staticcheck ./...
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/davecheney/httpstat

go 1.21
go 1.23

require github.com/fatih/color v1.18.0

Expand Down

0 comments on commit 1db1f51

Please sign in to comment.