mirror of
https://github.com/status-im/keycard-cli.git
synced 2025-03-01 12:20:37 +00:00
34 lines
514 B
YAML
34 lines
514 B
YAML
language: go
|
|
sudo: false
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- libpcsclite-dev
|
|
|
|
os:
|
|
- linux
|
|
- osx
|
|
|
|
go:
|
|
- 1.8.x
|
|
- 1.9.x
|
|
- 1.10.x
|
|
- 1.11.x
|
|
|
|
env:
|
|
-
|
|
- GIMME_OS=windows
|
|
|
|
matrix:
|
|
exclude:
|
|
- os: osx
|
|
env: GIMME_OS=windows
|
|
|
|
script:
|
|
- go build -v ./...
|
|
- |
|
|
if [ "$GOOS" != windows ]; then
|
|
go test -v ./...;
|
|
fi
|