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 ]
3
3
4
4
jobs :
5
5
ci :
6
- runs-on : ubuntu-latest
7
- if : github.event_name == 'pull_request' || (github.event_name == 'push' && github.ref == 'refs/heads/main')
8
-
9
6
strategy :
10
7
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
+
12
14
13
15
steps :
14
16
- uses : actions/setup-java@v4
22
24
23
25
- uses : gradle/actions/setup-gradle@v4
24
26
with :
25
- gradle-version : ${{ matrix.gradle-version }}
27
+ gradle-version : 8.12.1
26
28
27
29
- 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