Refine OID4VP JWS Signature Handling and Repair Unit Test Suite #128
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |