We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ce0803 commit 8ad5225Copy full SHA for 8ad5225
1 file changed
.github/workflows/ci-workflow.yml
@@ -7,16 +7,19 @@ on:
7
jobs:
8
build:
9
name: Compile
10
- # This job runs on Linux
+ strategy:
11
+ matrix:
12
+ java_version: [8, 9, 10]
13
+ os: [ubuntu-latest, windows-latest, macOS-latest]
14
runs-on: ubuntu-latest
15
steps:
16
- uses: actions/checkout@v1
17
- name: Set up JDK 1.8
- uses: actions/setup-java@v1
- with:
- java-version: 1.8
18
- - name: Build with Maven
19
- run: mvn package --file pom.xml
+ uses: actions/setup-java@v1
+ with:
20
+ java-version: 1.8
21
+ - name: Build with Maven
22
+ run: mvn package --file pom.xml
23
- run: echo The time was ${{ steps.hello.outputs.time }}
24
25
0 commit comments