Skip to content

Commit

Permalink
- Enhance github action script
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanbritz committed Mar 5, 2024
1 parent c457402 commit b9b7cf0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/go-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run: sudo apt-get install libusb-1.0-0-dev

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

- name: Test
run: go test ./... -cover -coverprofile coverage.out -race -mod=vendor -v
run: make test
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ install-libusb:
sudo apt-get install libusb-1.0-0-dev

build:
go build -v ./...
go build ./...

test:
go test ./... -cover -coverprofile coverage.out -race -mod=vendor -v
Expand Down

0 comments on commit b9b7cf0

Please sign in to comment.