Skip to content

Commit

Permalink
Basic CI to build on Windows (GHC 8.0 - 9.6)
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasabel committed Mar 30, 2023
1 parent 4808017 commit 02830de
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/win.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Build (Windows)
on:
push:
branches: [ master, ci-* ]
pull_request:
branches: [ master, ci-* ]

jobs:
build:
name: Build (GHC ${{ matrix.ghc }})
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
ghc: ['9.6', '9.4', '9.2', '9.0', '8.10', '8.8', '8.6', '8.4', '8.2', '8.0']
steps:
- uses: actions/checkout@v3
- uses: haskell/actions/setup@v2
with:
ghc-version: ${{ matrix.ghc }}
- run: cabal build
- run: cabal haddock
- run: cabal check

0 comments on commit 02830de

Please sign in to comment.