-
Notifications
You must be signed in to change notification settings - Fork 11
74 lines (60 loc) · 2.03 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
65
66
67
68
69
70
71
72
73
74
name: CI
# Trigger the workflow on push or pull request, but only for the main branch
on:
pull_request:
push:
branches: ['main']
jobs:
cabal:
name: ${{ matrix.os }} / ghc ${{ matrix.ghc }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
cabal: ['3.4.0.0']
ghc: ['8.10.4']
steps:
- uses: actions/checkout@v2
if: github.event.action == 'opened' || github.event.action == 'synchronize' || github.event.ref == 'refs/heads/main'
- uses: haskell/actions/setup@v1
id: setup-haskell-cabal
name: Setup Haskell
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: ${{ matrix.cabal }}
- name: Configure environment
run: |
echo '/usr/lib/postgresql/12/bin/' >> $GITHUB_PATH
echo "/nix/var/nix/profiles/per-user/$USER/profile/bin" >> "$GITHUB_PATH"
echo "/nix/var/nix/profiles/default/bin" >> "$GITHUB_PATH"
echo 'NIX_PATH="nixpkgs=channel:nixos-unstable"' >> "$GITHUB_ENV"
echo '$HOME/.ghcup/bin' >> $GITHUB_PATH
echo 'HOME/.cabal/bin' >> $GITHUB_PATH
echo 'HOME/.local/bin' >> $GITHUB_PATH
- name: Install Nix
run: |
./.github/workflows/install-nix.sh
- name: Configure
run: |
cabal configure --enable-tests --test-show-details=direct
- name: Freeze
run: |
nix-shell --run 'cabal freeze'
- uses: actions/cache@v2
name: Cache ~/.cabal/store
with:
path: ${{ steps.setup-haskell-cabal.outputs.cabal-store }}
key: ${{ runner.os }}-${{ matrix.ghc }}-${{ hashFiles('cabal.project.freeze') }}
- name: Running hlint
run: nix-shell --run './.github/workflows/hlint-runner.sh'
- name: Running stylish-haskell
run: nix-shell --run './.github/workflows/stylish-haskell-runner.sh'
- name: Install dependencies
run: |
nix-shell --run 'make deps'
- name: Build
run: |
nix-shell --run 'make build'
- name: Test
run: |
nix-shell --run 'make test'