Skip to content

Commit

Permalink
ci(go-sdk-test): reviewed test workflow to capture tests status and a…
Browse files Browse the repository at this point in the history
…dded missing credentials for testing
  • Loading branch information
AsifNawaz-cnic committed Aug 23, 2024
1 parent 31cbd8c commit 0214aac
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/go-sdk-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,13 @@ jobs:
check-latest: true
- name: Run build
run: go build .
- name: Run test
run: ./scripts/test-go.sh
- name: Running automated tests
env:
CNR_TEST_USER: ${{ secrets.CNR_TEST_USER }}
CNR_TEST_PASSWORD: ${{ secrets.CNR_TEST_PASSWORD }}
run: |
go test -v -race -coverprofile=coverage.out ./...
go tool cover -html=coverage.out -o coverage.html
dependabot:
needs:
Expand Down

0 comments on commit 0214aac

Please sign in to comment.