Skip to content

Commit

Permalink
fix action
Browse files Browse the repository at this point in the history
  • Loading branch information
dominikus1993 committed Feb 12, 2023
1 parent 0971080 commit edf40a4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,11 @@ jobs:
go-version: '1.20'

- name: Build
run: go build -v ./...

run: make build
- name: Test
run: go test -v ./...
run: make test
- name: Go Vet
run: "go vet ./..."
run: make vet

- uses: dominikh/[email protected]
name: staticcheck
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
build:
go build
go build -v ./...

test:
go test ./...
Expand Down

0 comments on commit edf40a4

Please sign in to comment.