mirror of
https://github.com/octoleo/restic.git
synced 2024-11-05 04:47:51 +00:00
31 lines
375 B
YAML
31 lines
375 B
YAML
sudo: false
|
|
language: go
|
|
|
|
os:
|
|
- linux
|
|
|
|
env:
|
|
- ARCH=x86_64
|
|
- ARCH=i686
|
|
|
|
go:
|
|
- 1.7.4
|
|
- 1.8.x
|
|
- 1.9.x
|
|
- tip
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
allow_failures:
|
|
- go: tip
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- devscripts
|
|
|
|
script:
|
|
- diff -au <(gofmt -d .) <(printf "")
|
|
- diff -au <(licensecheck --check '.go$' --recursive --lines 0 * | grep -v -w 'Apache (v2.0)') <(printf "")
|
|
- make
|