Skip to content

Commit

Permalink
Fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
dnovikoff committed Aug 14, 2024
1 parent 02194f5 commit 4d996b5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Build
env:
GOPROXY: "off"
run: make generate build
run: make build

- name: Test
env:
Expand Down
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ bench:
cd ./examples/bench/ && go test -bench=. -benchtime 5s -benchmem -run notest
# go test -v ./examples/bench/ --benchtime 10000x --bench ./examples/bench/ -benchmem

.PHONY: build
build:
go build -o /dev/null ./...

.PHONY: tidy
tidy:
go mod tidy
Expand Down

0 comments on commit 4d996b5

Please sign in to comment.