Skip to content

feat(ci/github): organize each container build into its own workflow … #25

feat(ci/github): organize each container build into its own workflow …

feat(ci/github): organize each container build into its own workflow … #25

Workflow file for this run

name: Agent Unittest
on:
pull_request:
paths:
- agent/**
- .github/workflows/agent-ci.yaml
jobs:
test:
name: Skyhook Agent Unit Tests
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