-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (32 loc) · 1010 Bytes
/
Copy pathci.yml
File metadata and controls
39 lines (32 loc) · 1010 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
- 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