Skip to content

Commit

Permalink
Migrate from Travis -> Circle
Browse files Browse the repository at this point in the history
Migrate from Travis -> Circle
  • Loading branch information
mdeggies authored Apr 13, 2020
2 parents f7d8399 + c47ac38 commit 36d6f40
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 26 deletions.
32 changes: 32 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
version: 2.1

orbs:
go: circleci/[email protected]

jobs:
test:
executor:
name: go/default
tag: << parameters.go-version >>
parameters:
go-version:
type: string
environment:
GO111MODULE: "on"
working_directory: /go/src/github.com/hashicorp/terraform-config-inspect
steps:
- checkout
- go/load-cache
- go/mod-download
- go/save-cache
- run: go test
- run: go install .

workflows:
terraform-config-inspect:
jobs:
- test:
matrix:
parameters:
go-version: ["1.11.13", "1.13.4"]
name: test-go-<< matrix.go-version >>
26 changes: 0 additions & 26 deletions .travis.yml

This file was deleted.

0 comments on commit 36d6f40

Please sign in to comment.