Skip to content
This repository was archived by the owner on Feb 18, 2025. It is now read-only.

Commit 6c1b69c

Browse files
committed
Configure GitHub CI matrix build
1 parent 581c70f commit 6c1b69c

File tree

1 file changed

+14
-9
lines changed

1 file changed

+14
-9
lines changed

.github/workflows/test.yml

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,20 @@ on:
88

99
jobs:
1010
build:
11+
strategy:
12+
matrix:
13+
os:
14+
- windows-latest
15+
- ubuntu-latest
1116

12-
runs-on: ubuntu-latest
17+
runs-on: ${{ matrix.os }}
1318

1419
steps:
15-
- uses: actions/checkout@v2
16-
- name: Set up JDK 11
17-
uses: actions/setup-java@v2
18-
with:
19-
java-version: '11'
20-
distribution: 'adopt'
21-
- name: Run tests
22-
run: sbt test
20+
- uses: actions/checkout@v4
21+
- name: Set up JDK 11
22+
uses: actions/setup-java@v2
23+
with:
24+
java-version: '11'
25+
distribution: 'adopt'
26+
- name: Run tests
27+
run: sbt test

0 commit comments

Comments
 (0)