Skip to content

Commit aea3b65

Browse files
committed
put back os changes
1 parent 86b6bdb commit aea3b65

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,12 @@ on: [ push, pull_request ]
33

44
jobs:
55
ci:
6-
runs-on: ubuntu-latest
6+
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 }}
712
if: github.event_name == 'pull_request' || (github.event_name == 'push' && github.ref == 'refs/heads/main')
813

914
steps:
@@ -18,7 +23,7 @@ jobs:
1823

1924
- uses: gradle/actions/setup-gradle@v4
2025
with:
21-
gradle-version: '8.12.1'
26+
gradle-version: 8.12.1
2227

2328
- run:
24-
./gradlew check --continue
29+
./gradlew check --continue -Dtest.gradle.version.override='${{ matrix.gradle-version }}'

0 commit comments

Comments
 (0)