shithub: furgit

ref: 0bb3530892f42739f04d08e603cc7d7b871df660
dir: /.builds/alpine.yml/

View raw version
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 .)"