Skip to content

feat: create fingerprint from CycloneDX SBOM #188

feat: create fingerprint from CycloneDX SBOM

feat: create fingerprint from CycloneDX SBOM #188

Workflow file for this run

name: tests
on:
pull_request:
push:
branches: [ main ]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
steps:
- uses: actions/checkout@v3
- name: Setup JDK 17
uses: actions/setup-java@v3
with:
distribution: 'oracle'
java-version: '17'
- name: Build project
# We need to build the agent first, because the tests depend on it
run: mvn clean install -DskipTests
- name: Run tests
run: mvn test