ref: 23750ddc2bf2390b73eaef9bc16373dda6bbf097
parent: 8630ab3a2fb3e6a5518156bc43bd4f6a81f21198
author: Runxi Yu <me@runxiyu.org>
date: Tue Mar 10 10:27:37 EDT 2026
ci: Ignore internal/compress
--- a/.builds/alpine.yml
+++ b/.builds/alpine.yml
@@ -12,13 +12,13 @@
go build ./...
- test: |
cd furgit
- go test -v ./...
+ go test -v -count 1 $(go list ./... | grep -v '/internal/compress')
- test-race: |
cd furgit
- go test -race -v ./...
+ go test -race -v -count 1 $(go list ./... | grep -v '/internal/compress')
- test-purego: |
cd furgit
- go test -v -tags purego ./...
+ go test -v -tags purego -count 1 $(go list ./... | grep -v '/internal/compress')
- lint: |
cd furgit
golangci-lint run ./...
--
⑨