We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 527e538 commit 0aa4521Copy full SHA for 0aa4521
.github/workflows/ci.yml
@@ -0,0 +1,25 @@
1
+name: Build & Quality Checks
2
+
3
+on:
4
+ pull_request:
5
+ push:
6
+ branches: [ main ]
7
8
+jobs:
9
+ build:
10
+ runs-on: ubuntu-latest
11
12
+ steps:
13
+ - uses: actions/checkout@v4
14
15
+ - name: Set up JDK 21
16
+ uses: actions/setup-java@v4
17
+ with:
18
+ java-version: '21'
19
+ distribution: 'temurin'
20
21
+ - name: Make gradlew executable
22
+ run: chmod +x ./gradlew
23
24
+ - name: Run Gradle checks
25
+ run: ./gradlew clean check
0 commit comments