Skip to content

Fixed library version #219

Fixed library version

Fixed library version #219

Workflow file for this run

name: Verify
on:
push:
branches: [ '*' ]
pull_request:
branches: [ '*' ]
jobs:
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
cache: 'maven'
- name: Maven verify
run: |
xvfb-run --auto-servernum mvn --batch-mode test
- name: Create Tests Summary
uses: test-summary/action@v2.3
with:
paths: spin-tools/target/surefire-reports/**/*.xml
if: always()