mirror of
https://github.com/mjl-/mox.git
synced 2024-12-26 16:33:47 +03:00
0bc3072944
most content is in markdown files in website/, some is taken out of the repo README and rfc/index.txt. a Go file generates html. static files are kept in a separate repo due to size.
17 lines
393 B
YAML
17 lines
393 B
YAML
sudo: false
|
|
language: go
|
|
go:
|
|
- "1.10.x"
|
|
- "1.11.x"
|
|
- tip
|
|
matrix:
|
|
fast_finish: true
|
|
allow_failures:
|
|
- go: tip
|
|
install:
|
|
- # Do nothing. This is needed to prevent default install action "go get -t -v ./..." from happening here (we want it to happen inside script step).
|
|
script:
|
|
- go get -t -v ./...
|
|
- diff -u <(echo -n) <(gofmt -d -s .)
|
|
- go tool vet .
|
|
- go test -v ./...
|