diff options
author | Markus Wüstenberg | 2025-03-05 12:00:11 +0100 |
---|---|---|
committer | GitHub | 2025-03-05 12:00:11 +0100 |
commit | 1e222b67fe5d47aba02827c6746c49a11ba3c743 (patch) | |
tree | 3c421b52fb3e1963776120d3e330509675521e08 /Makefile | |
parent | ea676e9a323c7c29b272265a3e19e6f65af397d1 (diff) | |
download | gomponents-1e222b67fe5d47aba02827c6746c49a11ba3c743.tar.lz gomponents-1e222b67fe5d47aba02827c6746c49a11ba3c743.tar.zst gomponents-1e222b67fe5d47aba02827c6746c49a11ba3c743.zip |
Benchmark large document and run in CI (#246)
Fixes #229
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile b/Makefile index 67a1e22..885401e 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ .PHONY: benchmark benchmark: - go test -bench=. + go test -bench=. ./... .PHONY: cover cover: @@ -13,4 +13,3 @@ lint: .PHONY: test test: go test -coverprofile=cover.out -shuffle on ./... - |