-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (29 loc) · 709 Bytes
/
Copy pathci.yml
File metadata and controls
37 lines (29 loc) · 709 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
name: CI
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
java-21:
name: Java 21
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Check out repository
uses: actions/checkout@v6
- name: Set up Java 21
uses: actions/setup-java@v5
with:
distribution: temurin
java-version: "21"
cache: maven
- name: Ensure Maven Wrapper is executable
run: chmod +x mvnw
- name: Verify with Maven Wrapper
run: ./mvnw --batch-mode --no-transfer-progress clean verify