authorgravatar for hello@nektro.netMeghan <hello@nektro.net> 2020-11-09 14:54:03 -08:00
committergravatar for hello@nektro.netMeghan <hello@nektro.net> 2020-11-09 14:54:03 -08:00
logf25484ef2c04b08a4c4b17300b7818d22ea48a4d
treebf8c27dda8c73d7d44ccd37b5721b8f0564d80c2
parent0788c6c1945d036f5f4f834238ad5aeec161377b

add circleci config


1 files changed, 21 insertions(+), 0 deletions(-)

.circleci/config.yml created+21
...@@ -0,0 +1,21 @@
1# Golang CircleCI 2.0 configuration file
2# See https://circleci.com/docs/2.0/language-go/
3version: 2.1
4orbs:
5 docker: circleci/docker@1.0.1
6jobs:
7 build:
8 working_directory: /home/circleci/zigmod
9 docker:
10 - image: circleci/golang:1.14
11 steps:
12 - checkout
13 - run: go version
14 - run: go env
15 - run: go get -v .
16 - run: go test -v .
17 - run: ./build_all.sh
18 - store_artifacts:
19 path: ./bin/
20 destination: /artifacts/
21 - run: ./make_release.sh