-
Notifications
You must be signed in to change notification settings - Fork 52
70 lines (62 loc) · 1.81 KB
/
haskell-ci-windows.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
name: Haskell-CI-Windows
on:
push:
paths:
- '**.hs'
- '**.sw'
- '**.cabal'
- '*.yaml'
- 'data/**.yaml'
- '.github/workflows/haskell-ci-windows.yml'
branches:
- "main"
# reuse the same filter for pull-requests
pull_request:
paths:
- '**.hs'
- '**.sw'
- '**.cabal'
- 'stack.yaml'
- '*.yaml'
- 'data/**.yaml'
- '.github/workflows/haskell-ci-windows.yml'
branches:
- "main"
jobs:
windows:
name: Haskell-CI - ${{ matrix.os }} - ghc-${{ matrix.ghc }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest]
cabal: ["3.10.1.0"]
ghc: ["9.8.2"]
timeout-minutes:
60
steps:
- uses: actions/checkout@v4
if: github.event.action == 'opened' || github.event.action == 'synchronize' || github.event.ref == 'refs/heads/main'
- uses: haskell-actions/setup@v2
id: setup-haskell-cabal
name: Setup Haskell
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: ${{ matrix.cabal }}
- name: Configure
run: cabal configure --enable-tests --enable-benchmarks --test-show-details=direct
- name: Freeze
run: cabal freeze
- uses: actions/cache@v4
name: Cache ~/.cabal/store
with:
path: ${{ steps.setup-haskell-cabal.outputs.cabal-store }}
key: ${{ runner.os }}-${{ matrix.ghc }}-${{ hashFiles('cabal.project.freeze') }}
restore-keys: |
${{ runner.os }}-${{ matrix.ghc }}-${{ hashFiles('cabal.project.freeze') }}
${{ runner.os }}-${{ matrix.ghc }}-
- name: Install dependencies
run: cabal build all --only-dependencies
- name: Build
run: cabal build all
- name: Test
run: cabal test all