Skip to content

Commit

Permalink
Upgrade to CircleCI 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Tamás Michelberger committed Oct 16, 2018
1 parent 7c093b7 commit 93bf447
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 17 deletions.
19 changes: 19 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
version: 2
jobs:
build:
docker:
- image: circleci/golang:1.11
environment:
GO111MODULE: "on"
working_directory: /go/src/github.com/sspinc/terraform-provider-credstash
steps:
- checkout
- restore_cache:
keys:
- go-mod-v1-{{ checksum "go.sum" }}
- go-mod-v1-
- run: go test ./...
- save_cache:
key: go-mod-v1-{{ checksum "go.sum" }}
paths:
- /go/pkg/mod
17 changes: 0 additions & 17 deletions circle.yml

This file was deleted.

0 comments on commit 93bf447

Please sign in to comment.