ref: 4787fb1f1c854ca394743891d1e2d7d4c041f017
dir: /.builds/alpine.yml/
image: alpine/edge
packages:
- go
- git
- golangci-lint
tasks:
- apk: |
sudo apk update
sudo apk upgrade
- 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 .)"