summaryrefslogtreecommitdiff
path: root/.github/workflows/main.yml
diff options
context:
space:
mode:
authorLaurent P. René de Cotret <LaurentRDC@users.noreply.github.com>2020-05-30 08:14:21 -0400
committerGitHub <noreply@github.com>2020-05-30 14:14:21 +0200
commit8afbb62ed5e969d78d8664df205646504f52f278 (patch)
tree3a2d9046a39eb239183832f43bd7121b5b7fd16e /.github/workflows/main.yml
parent9656e78869dd8248a8558671a48d2e52dbe7edb5 (diff)
downloadhakyll-8afbb62ed5e969d78d8664df205646504f52f278.tar.gz
Miscellaneous Windows-specific fixes and CI
Diffstat (limited to '.github/workflows/main.yml')
-rw-r--r--.github/workflows/main.yml8
1 files changed, 7 insertions, 1 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index b6c424e..9253d60 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -2,7 +2,13 @@ name: 'CI'
on: ['push']
jobs:
build:
- runs-on: 'ubuntu-latest'
+ strategy:
+ matrix:
+ os: [ubuntu-latest, windows-latest]
+
+ name: ${{ matrix.os }}
+ runs-on: $${{ matrix.os }}
+
steps:
- uses: 'actions/checkout@v1'
- uses: 'mstksg/setup-stack@v1'