ref: e67fbfc75de011c2c7685ae7a10dfce702b2a620
dir: /.builds/alpine.yml/
image: alpine/edge
packages:
- go
- git
- golangci-lint
tasks:
- build: |
cd furgit
go build ./...
- test: |
cd furgit
go test -v ./...
- test-race: |
cd furgit
go test -race -v ./...
- test-purego: |
cd furgit
go test -v -tags purego ./...
- lint: |
cd furgit
golangci-lint run ./...
- vet: |
cd furgit
go vet ./...
- fmt-check: |
cd furgit
test -z "$(gofmt -l .)"