Skip to content

Commit 4656a5f

Browse files
committed
hmm
1 parent 5df9208 commit 4656a5f

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- run: go build -v .
3737

3838
- name: Run linters
39-
uses: golangci/golangci-lint-action@e60da84bfae8c7920a47be973d75e15710aa8bd7 # v6.3.0
39+
uses: golangci/golangci-lint-action@2226d7cb06a077cd73e56eedd38eecad18e5d837 # v6.5.0
4040
with:
4141
version: latest
4242

Makefile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@ build: terraform-provider-coderd
1515
terraform-provider-coderd: internal/provider/*.go main.go
1616
CGO_ENABLED=0 go build .
1717

18+
test: testacc
19+
.PHONY: test
20+
1821
# Run acceptance tests
19-
.PHONY: testacc
2022
testacc:
21-
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

Comments
 (0)