Fast implementation of Git in pure Go codeberg.org/lindenii/furgit
git go
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

ci: Ignore internal/compress

Runxi Yu 23750ddc 8630ab3a

+3 -3
+3 -3
.builds/alpine.yml
··· 12 12 go build ./... 13 13 - test: | 14 14 cd furgit 15 - go test -v ./... 15 + go test -v -count 1 $(go list ./... | grep -v '/internal/compress') 16 16 - test-race: | 17 17 cd furgit 18 - go test -race -v ./... 18 + go test -race -v -count 1 $(go list ./... | grep -v '/internal/compress') 19 19 - test-purego: | 20 20 cd furgit 21 - go test -v -tags purego ./... 21 + go test -v -tags purego -count 1 $(go list ./... | grep -v '/internal/compress') 22 22 - lint: | 23 23 cd furgit 24 24 golangci-lint run ./...