Skip to content

Commit

Permalink
update build infra
Browse files Browse the repository at this point in the history
  • Loading branch information
GIC-de committed Jul 24, 2024
1 parent 40a80eb commit a0ede79
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
go-version: 1.22

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

- name: Test
run: go test -v ./...
run: make test
4 changes: 2 additions & 2 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ before:
hooks:
# You may remove this if you don't use go modules.
- go mod tidy
- go build -v ./...
- go test -v ./...
- make build
- make test
builds:
- main: ./cmd/bngblasterctrl/bngblasterctrld.go
binary: bngblasterctrl
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ fumpt:
gofumpt -l -w .

test:
go test -cover ./...
go test -v -cover ./...

lint:
golangci-lint run
Expand Down

0 comments on commit a0ede79

Please sign in to comment.