ref: c7e88852add91975a0924088b8c09ff5b917ac9b
dir: /.build.yml/
image: alpine/edge
packages:
- golangci-lint
- go
tasks:
- build: |
cd furgit
go build
- test-sha256: |
cd furgit
go test -v ./...
- test-sha1: |
cd furgit
go test -v -tags sha1 ./...
- test-race-sha256: |
cd furgit
go test -race -v ./...
- test-race-sha1: |
cd furgit
go test -race -v -tags sha1 ./...
- lint: |
cd furgit
golangci-lint run ./...