feat(agent/ci): add coverage reporting #15
Workflow file for this run
This file contains hidden or 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: Agent Unittest | |
| on: | |
| pull_request: | |
| paths: | |
| - agent/** | |
| jobs: | |
| test: | |
| name: Run tests & display coverage | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| issues: read | |
| checks: write | |
| pull-requests: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run unittests | |
| run: | | |
| cd agent | |
| make test | |
| - name: Generate Summary | |
| uses: test-summary/action@v2 | |
| if: always() | |
| with: | |
| paths: "agent/skyhook-agent/test-results.xml" | |
| output: test-summary.md | |
| - name: Display Summary | |
| if: always() | |
| run: | | |
| cat test-summary.md >> $GITHUB_STEP_SUMMARY |