Skip to content

Commit 20447c0

Browse files
committed
matrix test
1 parent f15e04e commit 20447c0

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ on:
44
push:
55
jobs:
66
test:
7+
strategy:
8+
fail-fast: false
9+
matrix:
10+
include:
11+
- java: 8
12+
- java: 17
713
runs-on: ubuntu-latest
814
steps:
915
- name: Checkout
@@ -12,6 +18,6 @@ jobs:
1218
uses: actions/setup-java@v3
1319
with:
1420
distribution: temurin
15-
java-version: 17
21+
java-version: ${{ matrix.java }}
1622
- name: Build and Test
1723
run: sbt -v +test

0 commit comments

Comments
 (0)