Skip to content
This repository has been archived by the owner on Mar 8, 2023. It is now read-only.

Commit

Permalink
Merge branch 'develop' into goreleaser
Browse files Browse the repository at this point in the history
  • Loading branch information
florisvdg committed Mar 11, 2019
2 parents e4173ea + 6ea1065 commit 7d55bb2
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
version: 2
build_common: &build
steps:
- checkout
- run: make build
jobs:
build_golang_1.11:
<<: *build
docker:
- image: circleci/golang:1.11
build_golang_1.12:
<<: *build
docker:
- image: circleci/golang:1.12

workflows:
version: 2
build:
jobs:
- build_golang_1.11
- build_golang_1.12
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
build:
go build ./cmd/secrethub-proxy

0 comments on commit 7d55bb2

Please sign in to comment.