Skip to content

Commit 8c215b7

Browse files
committed
Add Windows CI
1 parent 6e7e4c2 commit 8c215b7

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

.github/workflows/CI.yml

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,14 @@ on:
66
- master
77
jobs:
88
test-all:
9-
runs-on: ubuntu-18.04
10-
steps:
11-
- uses: actions/checkout@v2
12-
- uses: olafurpg/setup-scala@v13
13-
- name: Unit tests
14-
run: sbt cli/test
15-
- name: Intergration tests
16-
run: sbt cliIntegration/scripted
9+
runs-on: ${{matrix.OS}}
10+
strategy:
11+
matrix:
12+
os: [ubuntu-18.04, windows-2019]
13+
steps:
14+
- uses: actions/checkout@v2
15+
- uses: olafurpg/setup-scala@v13
16+
- name: Unit tests
17+
run: sbt cli/test
18+
- name: Intergration tests
19+
run: sbt cliIntegration/scripted

0 commit comments

Comments
 (0)