Skip to content

Commit 831a8de

Browse files
committed
put back os changes
1 parent 1d3a9c4 commit 831a8de

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

.github/workflows/ci.yml

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

44
jobs:
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
@@ -22,7 +24,7 @@ jobs:
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 }}'

0 commit comments

Comments
 (0)