blob: 752a60c087569e7f12c443843157774d255948c0 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
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 .)"
|