We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c9407d9 + 67d6637 commit b132d6eCopy full SHA for b132d6e
1 file changed
.github/workflows/main.yml
@@ -9,19 +9,22 @@ jobs:
9
10
steps:
11
- name: Checkout
12
- uses: actions/checkout@v2.4.0
+ uses: actions/checkout@v4
13
with:
14
submodules: 'recursive'
15
- - name: Set up JDK 1.8
16
- uses: actions/setup-java@v1
+ - name: Set up JDK 8
+ uses: actions/setup-java@v2
17
18
- java-version: 1.8
+ java-version: '8'
19
+ distribution: 'zulu'
20
- name: Cache
21
uses: actions/cache@v1
22
23
path: ~/.gradle/caches
24
key: ${{ runner.os }}-gradle-${{ hashFiles('build.gradle') }}
25
- name: Executable gradlew
26
run: chmod +x gradlew
- - name: Build with Gradle
27
- run: ./gradlew build
+ - name: Run Tests
28
+ run: ./gradlew ScriptingExample:test
29
+ #The project does not `build` atm, but we're using the ScriptingExample module to track passing tests
30
+
0 commit comments