aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Runxi Yu2026-03-10 14:27:37 +0800
committerGravatar Runxi Yu2026-03-10 14:27:37 +0800
commit23750ddc2bf2390b73eaef9bc16373dda6bbf097 (patch)
treeeeef077f16ef6ec7145b2268ee60e7a577446bc4
parentRevert "object/header: Rename from objectheader" (diff)
signatureNo signature
ci: Ignore internal/compress
-rw-r--r--.builds/alpine.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.builds/alpine.yml b/.builds/alpine.yml
index 54c90989..6c5a2f45 100644
--- a/.builds/alpine.yml
+++ b/.builds/alpine.yml
@@ -12,13 +12,13 @@ tasks:
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 ./...