Skip to content

Integration Tests

Integration Tests #73

Workflow file for this run

name: Integration Tests
on:
workflow_dispatch:
schedule:
- cron: '0 2 * * *'
jobs:
build:
permissions:
checks: write
statuses: write
contents: read
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ linux-self-hosted ]
steps:
- uses: actions/checkout@v6
- name: Set up JDK 21
uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: 21
cache: maven
- name: Build with Maven
env:
VAULT_TOKEN: ${{ secrets.VAULT_TOKEN }}
run: mvn verify -pl protocols -am --no-transfer-progress --batch-mode --fail-at-end -D"enforcer.skip"
- name: Publish Test Report
if: ${{ always() }}
uses: ScalableCapital/action-surefire-report@v2
with:
check_name: Test Report (${{ matrix.os }})