-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (39 loc) · 907 Bytes
/
ci-test.yml
File metadata and controls
48 lines (39 loc) · 907 Bytes
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
name: Haskell CI/CD
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
name: Haskell Lint
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Haskell
uses: actions/setup-haskell@v1
with:
ghc-version: 8.10
stack-version: 2.7
- name: Install HLint
run: stack install hlint
- name: Run HLint
run: stack exec hlint src/*.hs app/*.hs test/*.hs
test:
name: Stack Tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Haskell
uses: actions/setup-haskell@v1
with:
ghc-version: 8.10
stack-version: 2.7
- name: Stack Setup
run: stack setup
- name: Stack Build and Test
run: stack test