File: .travis.yml

package info (click to toggle)
golang-github-biogo-store 0.0~git20200525.8c94ae1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 380 kB
  • sloc: makefile: 2
file content (22 lines) | stat: -rw-r--r-- 310 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
language: go

go:
 - 1.13.x
 - 1.12.x
 - master

env:
 global:
  - GO111MODULE=on
  - GOFLAGS="-mod=readonly"

matrix:
  fast_finish: true
  allow_failures:
    - go: master

# Get deps, build, test, and ensure the code is gofmt'ed.
script:
 - go build -v ./...
 - go test -v ./...
 - diff <(gofmt -d .) <("")