Skip to content

Commit

Permalink
Extract benchmark automation to #320
Browse files Browse the repository at this point in the history
  • Loading branch information
miry committed Sep 17, 2021
1 parent ea78750 commit c39d29f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,6 @@ jobs:
name: Tests
run: make test

-
name: benchmarks
run: make bench

build:
runs-on: ubuntu-latest
steps:
Expand Down
7 changes: 1 addition & 6 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,15 +1,10 @@
.PHONY: all
all: setup build test bench fmt lint
all: setup build test fmt lint

.PHONY: test
test:
go test -v -race ./...

.PHONY: bench
bench:
go test -bench=. -v *.go
go test -bench=. -v toxics/*.go

.PHONY: fmt
fmt:
go fmt ./...
Expand Down

0 comments on commit c39d29f

Please sign in to comment.