-
Notifications
You must be signed in to change notification settings - Fork 3
64 lines (54 loc) · 1.42 KB
/
ci.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
on:
push:
branches:
- main
pull_request:
branches:
- main
name: Build
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v2
- name: Check formatting
uses: mrkkrp/ormolu-action@v1
- name: Set up hlint
uses: rwe/actions-hlint-setup@v1
with:
version: "3.2.7"
- name: Run hlint
uses: rwe/actions-hlint-run@v2
with:
path: src/
fail-on: warning
- name: Cache ~/.stack folder
uses: actions/cache@v2
with:
path: ~/.stack
key: stack-global-linux-${{hashFiles('**.yaml')}}
restore-keys: |
stack-global-linux
- name: Cache ~/.local/bin folder
uses: actions/cache@v2
with:
path: ~/.local/bin
key: stack-local-bin-linux-${{hashFiles('**.yaml')}}
restore-keys: |
stack-local-bin-linux
- name: Cache .stack-work folder
uses: actions/cache@v2
with:
path: .stack-work
key: stack-work-linux-${{hashFiles('**.yaml')}}
restore-keys: |
stack-work-linux
- uses: haskell/actions/setup@v1
with:
ghc-version: "8.10.3" # Exact version of ghc to use
enable-stack: true
stack-version: "latest"
- name: Build project
run: |
stack build --test