Skip to content
This repository was archived by the owner on Oct 7, 2020. It is now read-only.

Commit ccb8a6a

Browse files
authored
Try build matrix
1 parent 6f5a0a3 commit ccb8a6a

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/haskell.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,20 @@ on: [push, pull_request]
55
jobs:
66
build:
77

8-
runs-on: ubuntu-latest
8+
runs-on: ${{matrix.os}}
9+
10+
strategy:
11+
matrix:
12+
os: [ubuntu-latest, macOS-latest, windows-latest]
913

1014
steps:
1115
- uses: actions/checkout@v1
16+
with:
17+
submodules: recursive
1218
- uses: actions/setup-haskell@v1
1319
with:
1420
ghc-version: '8.6.5'
1521
cabal-version: '3.0'
16-
- name: Init git submodules
17-
run: git submodule update --recursive --init
1822
- name: Install dependencies
1923
run: |
2024
cabal update

0 commit comments

Comments
 (0)