Skip to content

fix(oid4vp): complete SD-JWT DCQL query-criteria validation for VP token #241

fix(oid4vp): complete SD-JWT DCQL query-criteria validation for VP token

fix(oid4vp): complete SD-JWT DCQL query-criteria validation for VP token #241

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@v5
- name: Set up JDK 21
uses: actions/setup-java@v5
with:
distribution: "temurin"
java-version: "21"
- name: Cache Maven packages
uses: actions/cache@v4
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 code formatting
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