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 86b6bdb commit aea3b65Copy full SHA for aea3b65
.github/workflows/ci.yml
@@ -3,7 +3,12 @@ on: [ push, pull_request ]
3
4
jobs:
5
ci:
6
- runs-on: ubuntu-latest
+ strategy:
7
+ matrix:
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
14
steps:
@@ -18,7 +23,7 @@ jobs:
18
23
19
24
- uses: gradle/actions/setup-gradle@v4
20
25
with:
21
- gradle-version: '8.12.1'
26
+ gradle-version: 8.12.1
22
27
28
- run:
- ./gradlew check --continue
29
+ ./gradlew check --continue -Dtest.gradle.version.override='${{ matrix.gradle-version }}'
0 commit comments