Skip to content
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.

Commit

Permalink
Merge branch 'master' of github.com:louy/terraform-provider-uptimerobot
Browse files Browse the repository at this point in the history
  • Loading branch information
louy committed May 31, 2018
2 parents 2a3a96e + 04a38c0 commit 00c34ee
Show file tree
Hide file tree
Showing 14 changed files with 549 additions and 1,163 deletions.
35 changes: 35 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
version: 2
jobs:
build:
docker:
# CircleCI Go images available at: https://hub.docker.com/r/circleci/golang/
- image: circleci/golang:1.10

working_directory: /go/src/github.com/louy/terraform-provider-uptimerobot

steps:
- checkout

- restore_cache:
keys:
- vendor-dep-{{ checksum "Gopkg.lock" }}

- run: dep ensure -vendor-only

- save_cache:
key: vendor-dep-{{ checksum "Gopkg.lock" }}
paths:
- ./vendor

- run:
name: Build
command: |
go build -v
- run:
name: Run tests
command: |
go test
- store_artifacts:
path: "/go/bin/terraform-provider-uptimerobot"
destination: terraform-provider-uptimerobot
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
/vendor/*/
!/vendor/vendor.json
/vendor

/terraform-provider-uptimerobot
/.terraform
Expand Down
Loading

0 comments on commit 00c34ee

Please sign in to comment.