Skip to content

Refine OID4VP JWS Signature Handling and Repair Unit Test Suite #128

Refine OID4VP JWS Signature Handling and Repair Unit Test Suite

Refine OID4VP JWS Signature Handling and Repair Unit Test Suite #128

Workflow file for this run

name: CI
on: pull_request
jobs:
build-and-test:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up JDK 17
uses: actions/setup-java@v5
with:
distribution: "temurin"
java-version: "17"
cache: "maven"
- name: Cache Maven packages
uses: actions/cache@v5
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Make Maven Wrapper executable
run: chmod +x mvnw
- name: Check formatting (Spotless)
run: ./mvnw spotless:check --batch-mode
- name: Build only (skip tests)
run: ./mvnw clean package -DskipTests --batch-mode
- name: Run tests
run: ./mvnw test --batch-mode