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 1766fa8 commit c45a7afCopy full SHA for c45a7af
.github/workflows/gradle.yml
@@ -1,6 +1,10 @@
1
-name: Java CI
+name: Java CI with Gradle
2
3
-on: [push]
+on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
8
9
jobs:
10
build:
@@ -9,9 +13,11 @@ jobs:
13
14
steps:
11
15
- uses: actions/checkout@v4
12
- - uses: actions/setup-java@v4
16
+ - name: Set up JDK
17
+ uses: actions/setup-java@v4
18
with:
19
distribution: 'temurin'
20
java-version: 22
21
cache: 'gradle'
- - run: ./gradlew compiler:test examples:test
22
+ - name: Build with Gradle
23
+ run: ./gradlew compiler:test examples:test
0 commit comments