File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed
Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -3,12 +3,14 @@ on: [ push, pull_request ]
33
44jobs :
55 ci :
6- runs-on : ubuntu-latest
7- if : github.event_name == 'pull_request' || (github.event_name == 'push' && github.ref == 'refs/heads/main')
8-
96 strategy :
107 matrix :
11- gradle-version : [ '7.6.2', '8.0.1', '8.2.1' ]
8+ gradle-version : [ '7.6.4', '8.7', '8.12.1', 'current' ]
9+ os : [ 'ubuntu-latest', 'macos-latest', 'windows-latest' ]
10+
11+ runs-on : ${{ matrix.os }}
12+ if : github.event_name == 'pull_request' || (github.event_name == 'push' && github.ref == 'refs/heads/main')
13+
1214
1315 steps :
1416 - uses : actions/setup-java@v4
2224
2325 - uses : gradle/actions/setup-gradle@v4
2426 with :
25- gradle-version : ${{ matrix.gradle-version }}
27+ gradle-version : 8.12.1
2628
2729 - run :
28- ./gradlew check --continue
30+ ./gradlew check --continue -Dtest.gradle.version.override='${{ matrix.gradle-version }}'
You can’t perform that action at this time.
0 commit comments