Skip to content

Commit 8ad5225

Browse files
still testing Github CI workflow
1 parent 8ce0803 commit 8ad5225

1 file changed

Lines changed: 9 additions & 6 deletions

File tree

.github/workflows/ci-workflow.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,19 @@ on:
77
jobs:
88
build:
99
name: Compile
10-
# This job runs on Linux
10+
strategy:
11+
matrix:
12+
java_version: [8, 9, 10]
13+
os: [ubuntu-latest, windows-latest, macOS-latest]
1114
runs-on: ubuntu-latest
1215
steps:
1316
- uses: actions/checkout@v1
1417
- name: Set up JDK 1.8
15-
uses: actions/setup-java@v1
16-
with:
17-
java-version: 1.8
18-
- name: Build with Maven
19-
run: mvn package --file pom.xml
18+
uses: actions/setup-java@v1
19+
with:
20+
java-version: 1.8
21+
- name: Build with Maven
22+
run: mvn package --file pom.xml
2023
- run: echo The time was ${{ steps.hello.outputs.time }}
2124

2225

0 commit comments

Comments
 (0)