Skip to content

feat(agent/ci): add coverage reporting #10

feat(agent/ci): add coverage reporting

feat(agent/ci): add coverage reporting #10

Workflow file for this run

name: Agent Unittest
on: [pull_request]
# 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: Install everything, run the tests, produce the .coverage file and coverage.xml report
run: |
cd agent
make test
- name: Test Summary
uses: test-summary/action@v2
if: always()
with:
paths: "agent/coverage.xml"