diff --git a/.github/workflows/haskell_windows.yml b/.github/workflows/haskell_windows.yml new file mode 100644 index 0000000..16cba59 --- /dev/null +++ b/.github/workflows/haskell_windows.yml @@ -0,0 +1,18 @@ +name: Haskell CI + +on: [push] + +jobs: + build: + + runs-on: windows-latest + steps: + - uses: actions/checkout@v1 + - uses: actions/setup-haskell@v1 + with: + ghc-version: '8.6.5' + cabal-version: '3.0' + - name: Install dependencies + run: | + stack setup + stack install