-
Notifications
You must be signed in to change notification settings - Fork 4
39 lines (35 loc) · 1.03 KB
/
hs.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
name: Haskell CI
on:
push:
branches: [ main ]
paths: [ hs/** ]
pull_request:
branches: [ main ]
paths: [ hs/** ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: haskell/actions/setup@v2
id: setup-haskell
with:
ghc-version: 9.2.5
- run: cabal configure --enable-tests --enable-benchmarks
working-directory: hs
- run: cabal freeze
working-directory: hs
- uses: actions/cache@v3
with:
key: hs-${{ runner.os }}-${{ hashFiles('**/cabal.project.freeze') }}-build
restore-keys: |
hs-${{ runner.os }}-${{ hashFiles('**/cabal.project.freeze') }}-
hs-${{ runner.os }}-
path: ${{ steps.setup-haskell.outputs.cabal-store }}
- run: cabal build all --only-dependencies
working-directory: hs
- run: cabal build all
working-directory: hs
- run: cabal test all --test-show-details=direct
working-directory: hs