-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d3dbb70
commit c1888ed
Showing
1 changed file
with
14 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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: | ||
|