-
-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (28 loc) · 838 Bytes
/
ci.yml
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
name: CI
on:
push:
branches: main
pull_request:
workflow_call:
concurrency:
group: ci-${{ github.ref_name }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: oracle
java-version: 22
check-latest: true
- uses: gradle/actions/setup-gradle@v3
- uses: gradle/actions/wrapper-validation@v3
- uses: gradle/actions/dependency-submission@v3
- run: ./gradlew compileJava compileTestJava compileTestFixturesJava
- run: ./gradlew checkstyleMain checkstyleTest checkstyleTestFixtures
- run: ./gradlew sonarlintMain sonarlintTest sonarlintTestFixtures
- run: ./gradlew javadoc
- run: ./gradlew test
- run: ./gradlew build