Skip to content

Commit

Permalink
really this time
Browse files Browse the repository at this point in the history
  • Loading branch information
jharley committed Jul 31, 2024
1 parent d90a77f commit 1cf43a5
Showing 1 changed file with 32 additions and 4 deletions.
36 changes: 32 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,14 @@ jobs:
HONEYCOMB_KEY_ID: ${{ secrets.HONEYCOMB_KEY_ID }}
HONEYCOMB_KEY_SECRET: ${{ secrets.HONEYCOMB_KEY_SECRET }}
HONEYCOMB_DATASET: testacc
run: go test -v -coverprofile=client-coverage.txt -covermode=atomic ./client/... | go-junit-report -set-exit-code > client-report.xml
run: |
go test -v ./client/... \
-coverprofile=client-coverage.txt \
-covermode=atomic | \
go-junit-report \
-set-exit-code \
-iocopy \
-out client-report.xml
- uses: hashicorp/setup-terraform@v3
with:
Expand All @@ -84,7 +91,14 @@ jobs:
HONEYCOMB_DATASET: testacc
TF_ACC: 1
TF_ACC_TERRAFORM_VERSION: ${{ env.TERRAFORM_VERSION }}
run: go test -v -coverprofile=tf-coverage.txt -covermode=atomic ./internal/... ./honeycombio/... | go-junit-report -set-exit-code > provider-report.xml
run: |
go test -v ./internal/... ./honeycombio/... \
-coverprofile=tf-coverage.txt \
-covermode=atomic | \
go-junit-report \
-set-exit-code \
-iocopy \
-out provider-report.xml
- name: Cleanup Dangling Resources
if: ${{ always() }}
Expand Down Expand Up @@ -144,7 +158,14 @@ jobs:
HONEYCOMB_KEY_ID: ${{ secrets.HONEYCOMB_KEY_ID_EU }}
HONEYCOMB_KEY_SECRET: ${{ secrets.HONEYCOMB_KEY_SECRET_EU }}
HONEYCOMB_DATASET: testacc
run: go test -v -coverprofile=client-coverage.txt -covermode=atomic ./client/... | go-junit-report -iocopy -set-exit-code > client-report.xml
run: |
go test -v ./client/... \
-coverprofile=client-coverage.txt \
-covermode=atomic | \
go-junit-report \
-set-exit-code \
-iocopy \
-out client-report.xml
- uses: hashicorp/setup-terraform@v3
with:
Expand All @@ -161,7 +182,14 @@ jobs:
HONEYCOMB_DATASET: testacc
TF_ACC: 1
TF_ACC_TERRAFORM_VERSION: ${{ env.TERRAFORM_VERSION }}
run: go test -v -coverprofile=tf-coverage.txt -covermode=atomic ./internal/... ./honeycombio/... | go-junit-report -iocopy -set-exit-code > provider-report.xml
run: |
go test -v ./internal/... ./honeycombio/... \
-coverprofile=tf-coverage.txt \
-covermode=atomic | \
go-junit-report \
-set-exit-code \
-iocopy \
-out provider-report.xml
- name: Cleanup Dangling Resources
if: ${{ always() }}
Expand Down

0 comments on commit 1cf43a5

Please sign in to comment.