We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b33d57 commit a2dcc05Copy full SHA for a2dcc05
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,27 @@
1
+name: Java CI with Gradle
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - name: Checkout code
15
+ uses: actions/checkout@v4
16
17
+ - name: Set up JDK 21
18
+ uses: actions/setup-java@v4
19
+ with:
20
+ distribution: 'temurin'
21
+ java-version: '21'
22
23
+ - name: Grant execute permission for gradlew
24
+ run: chmod +x gradlew
25
26
+ - name: Build with Gradle
27
+ run: ./gradlew build
0 commit comments