Skip to content

build(deps): bump actions/checkout from 5.0.1 to 7.0.0 #67

build(deps): bump actions/checkout from 5.0.1 to 7.0.0

build(deps): bump actions/checkout from 5.0.1 to 7.0.0 #67

Workflow file for this run

name: CI
on:
push:
branches: ["**"]
pull_request:
branches: ["**"]
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build and test (JDK 21)
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- name: Check out repository
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Set up JDK 21
uses: actions/setup-java@03ad4de0992f5dab5e18fcb136590ce7c4a0ac95 # v5
with:
distribution: temurin
java-version: "21"
cache: maven
- name: Build and run unit tests
run: mvn -B test
- name: Verify implementation against the corpus (conformance)
# Drives all 140 vectors, including the 109 in-scope verifier vectors,
# and asserts each in-scope verdict, diagnostic code, and structured
# details against corpus.json.
run: mvn -B test -Dtest=ConformanceTest