blob: f756d3a51be19dfb8feffaac22ed36f4d0a28cb3 (
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
|
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 ./...
|