aboutsummaryrefslogtreecommitdiff
path: root/.build.yml
blob: 559f11082b50b01c97e104a4e738ab8651e03ec1 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
  - lint: |
      cd furgit
      golangci-lint run .