Skip to content

feat: Create provisioner abstraction #12

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 14 commits into from
Jan 8, 2022
Merged
Prev Previous commit
Build provisioner tests on Linux only
  • Loading branch information
kylecarbs committed Jan 8, 2022
commit 49b0ac8d256fb0507db5d42cac47d6d1866b82f1
2 changes: 1 addition & 1 deletion .github/workflows/coder.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ jobs:

- run:
gotestsum --jsonfile="gotests.json" --packages="./..." --
-covermode=atomic -coverprofile="gotests.coverage"
-covermode=atomic -coverprofile="gotests.coverage" -timeout=1m

- uses: codecov/codecov-action@v2
with:
Expand Down
2 changes: 2 additions & 0 deletions provisioner/terraform/parse_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package terraform

import (
Expand Down
2 changes: 2 additions & 0 deletions provisioner/terraform/provision_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package terraform

import (
Expand Down