-
Notifications
You must be signed in to change notification settings - Fork 35
69 lines (56 loc) · 1.58 KB
/
haskell.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
name: Stack CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install required libraries
run: >-
sudo apt install
z3
# Use preinstalled Stack. Should Stack fail to be installed, use the setup action:
# - name: Setup Haskell
# uses: haskell-actions/setup@v2
# with:
# enable-stack: true
# stack-no-global: true
- name: Restore Stack build artifacts (user + project)
uses: actions/cache/restore@v4
id: cache
with:
path: |
~/.stack
.stack-work
# Write a fresh cache each time
key: ${{ runner.os }}-stack-${{ github.sha }}
restore-keys: |
${{ runner.os }}-stack
- name: Setup Stack
run: stack setup
- name: Build dependencies
run: stack test --only-dependencies
# This step only consumes an extra minute without gains.
# - name: Build w/o tests
# run: stack build
- name: Build w/ tests
run: stack test --no-run-tests
- name: Run tests
run: stack test
# Always cache dependencies.
# This makes esp. sense now that some tests are broken.
- name: Cache Stack build artifacts (user + project)
uses: actions/cache/save@v4
if: always() && steps.cache.outputs.cache-hit != 'true'
with:
path: |
~/.stack
.stack-work
key: ${{ steps.cache.outputs.cache-primary-key }}