Skip to content

Commit

Permalink
Update acceptance.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
pawelsz-rb authored Feb 28, 2024
1 parent d3dbb70 commit c1888ed
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions .github/workflows/acceptance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,17 +42,28 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

# Run acceptance tests
- name: Acceptance tests
run: make testacc
- name: Acceptance tests client
run: make testacc_client
env:
TERRAFORM_PROVIDER_ROLLBAR_DEBUG: 1
GOMAXPROCS: 8

- name: Acceptance tests rollbar test1
run: make testacc_rollbar_test1
env:
TERRAFORM_PROVIDER_ROLLBAR_DEBUG: 1
GOMAXPROCS: 8
- name: Acceptance tests rollbar test2
run: make testacc_rollbar_test2
env:
TERRAFORM_PROVIDER_ROLLBAR_DEBUG: 1
GOMAXPROCS: 8

# Report code coverage
- name: Convert Go coverage file to lcov format
run: |
go get github.com/jandelgado/gcov2lcov
go install github.com/jandelgado/gcov2lcov
cat coverage_client.out coverage_test1.out coverage_test2.out > coverage.out
~/go/bin/gcov2lcov -infile coverage.out -outfile lcov.info
- uses: coverallsapp/[email protected]
with:
Expand Down

0 comments on commit c1888ed

Please sign in to comment.