Skip to content

[PLUTO-1411] Add trivy test #4

[PLUTO-1411] Add trivy test

[PLUTO-1411] Add trivy test #4

name: Trivy Plugin Test
permissions:
contents: write
on:
push:
paths:
- 'plugins/tools/trivy/**'
- '.github/workflows/trivy-plugin-test.yml'
pull_request:
paths:
- 'plugins/tools/trivy/**'
- '.github/workflows/trivy-plugin-test.yml'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.21'
cache: true
- name: Build CLI
run: |
go build -o cli-v2 ./cli-v2.go
chmod +x cli-v2
- name: Run Trivy plugin tests
run: |
cd plugins/tools/trivy/test
# Install the plugin
../../../cli-v2 install
# Run analysis
../../../cli-v2 analyze --tool trivy --format sarif --output actual.sarif
# Compare with expected output
diff expected.sarif actual.sarif
# Clean up
rm actual.sarif