Skip to content

Commit 7aa052c

Browse files
authored
ci: Start building on CircleCI (#76)
A step forward towards #56
1 parent e0516f1 commit 7aa052c

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.circleci/config.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
version: 2
2+
jobs:
3+
build:
4+
docker:
5+
- image: circleci/golang:1.10
6+
working_directory: /go/src/github.com/databus23/helm-diff
7+
steps:
8+
- checkout
9+
- run:
10+
name: Install dependencies
11+
command: |
12+
make bootstrap
13+
- run:
14+
name: Run unit tests
15+
command: |
16+
make test
17+
- run:
18+
name: Verify installation
19+
command: |
20+
mkdir -p helmhome
21+
make install HELM_HOME=helmhome
22+
helmhome/plugins/helm-diff/bin/diff version
23+

0 commit comments

Comments
 (0)