Skip to content

Commit 08296c3

Browse files
committed
add more os support
1 parent b85dc91 commit 08296c3

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,13 @@ 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:
118
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')
1213

1314
steps:
1415
- uses: actions/setup-java@v4

0 commit comments

Comments
 (0)