12 lines
257 B
Bash
Executable File
12 lines
257 B
Bash
Executable File
#!/bin/bash -ex
|
|
|
|
# Copyright 2016 go-dockerclient authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style
|
|
# license that can be found in the LICENSE file.
|
|
|
|
make test
|
|
|
|
if [[ $TRAVIS_OS_NAME == "linux" ]]; then
|
|
make integration
|
|
fi
|