summaryrefslogtreecommitdiffstats
path: root/.circleci
diff options
context:
space:
mode:
authorantham <hamonanth@gmail.com>2018-08-25 15:32:06 +0200
committerAnthony HAMON <anthony.hamon@iadvize.com>2018-08-26 01:58:20 +0200
commit2273f4c0a527faf735ffb759b6d8030f8277dd2f (patch)
treebb38236dd967d044a42b95776fcd5d671b0ee481 /.circleci
parent23fe0290ad37197cb80ca464a7287cd78191e91a (diff)
add compile step in circleci
Diffstat (limited to '.circleci')
-rw-r--r--.circleci/config.yml5
1 files changed, 5 insertions, 0 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 0eef1a409..c9b2fed58 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -12,6 +12,11 @@ jobs:
command: |
./test.sh
- run:
+ name: Compile project on every platform
+ command: |
+ go get github.com/mitchellh/gox
+ gox
+ - run:
name: Push on codecov result
command: |
bash <(curl -s https://codecov.io/bash)