Refactor server readiness waiting mechanism for the integration tests #24
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
name: Test Integration | |
on: push | |
jobs: | |
test-integration: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Test Integration | |
run: make test-integration | |
- name: Coverage report | |
uses: mgerasimchuk/go-coverage-report@custom-report-path | |
with: | |
badge-title: Coverage (integration) | |
coverage-file: assets/coverage/integration/coverage.out | |
report: true | |
output-path: assets/coverage/integration | |
chart: true |