We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5df9208 commit 4656a5fCopy full SHA for 4656a5f
.github/workflows/test.yml
@@ -36,7 +36,7 @@ jobs:
36
- run: go build -v .
37
38
- name: Run linters
39
- uses: golangci/golangci-lint-action@e60da84bfae8c7920a47be973d75e15710aa8bd7 # v6.3.0
+ uses: golangci/golangci-lint-action@2226d7cb06a077cd73e56eedd38eecad18e5d837 # v6.5.0
40
with:
41
version: latest
42
Makefile
@@ -15,7 +15,10 @@ build: terraform-provider-coderd
15
terraform-provider-coderd: internal/provider/*.go main.go
16
CGO_ENABLED=0 go build .
17
18
+test: testacc
19
+.PHONY: test
20
+
21
# Run acceptance tests
-.PHONY: testacc
22
testacc:
- TF_ACC=1 go test ./... -v $(TESTARGS) -timeout 120m
23
+ TF_ACC=1 go test ./... -v $(TESTARGS) -count 1 -timeout 120m
24
+.PHONY: testacc
0 commit comments