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 75fa38f commit 8e9fd89Copy full SHA for 8e9fd89
.github/workflows/ci.yml
@@ -1,5 +1,6 @@
1
name: CI
2
on:
3
+ push:
4
pull_request:
5
types:
6
- opened
@@ -10,16 +11,19 @@ on:
10
11
12
jobs:
13
main:
- runs-on: ubuntu-latest
14
strategy:
15
matrix:
16
- build:
17
- - java: 17
18
- profile: codequality
19
- - java: 11
20
- profile: java11
21
- - java: 8
22
- profile: java8
+ os: [ubuntu-latest]
+ build:
+ - java: 17
+ profile: codequality
+ - java: 11
+ profile: java11
+ - java: 8
23
+ profile: java8
24
+
25
+ name: with Java ${{ matrix.build.java }}
26
+ runs-on: ${{ matrix.os}}
27
steps:
28
- name: Checkout Repository
29
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
0 commit comments