fix(oid4vp): complete SD-JWT DCQL query-criteria validation for VP token #241
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@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 |