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 b85dc91 commit 08296c3Copy full SHA for 08296c3
.github/workflows/ci.yml
@@ -3,12 +3,13 @@ on: [ push, pull_request ]
3
4
jobs:
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
strategy:
10
matrix:
11
gradle-version: [ '7.6.4', '8.7', '8.12.1', 'current' ]
+ os: [ ubuntu-latest, macos-latest, windows-latest ]
+
+ runs-on: ${{ matrix.os }}
12
+ if: github.event_name == 'pull_request' || (github.event_name == 'push' && github.ref == 'refs/heads/main')
13
14
steps:
15
- uses: actions/setup-java@v4
0 commit comments