-
-
Notifications
You must be signed in to change notification settings - Fork 35
83 lines (83 loc) · 2.76 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
on:
push:
pull_request:
jobs:
stack-ghc-8_12:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: cachix/install-nix-action@v22
with:
nix_path: nixpkgs=channel:nixos-23.05
- uses: haskell/actions/setup@v2
with:
enable-stack: true
- if: ${{ runner.os == 'Linux' }}
# https://github.com/actions/runner-images/issues/7061
run: sudo chown -R $USER /usr/local/.ghcup
- uses: actions/cache@v3
with:
path: |
~/.stack
.stack-work
key: stack-${{ runner.os }}-8.12-${{ hashFiles('stack-ghc-8.12.yaml.lock') }}-2
restore-keys: |
- run: stack --stack-yaml stack-ghc-8.12.yaml build --only-dependencies
- run: stack --stack-yaml stack-ghc-8.12.yaml build
- run: stack --stack-yaml stack-ghc-8.12.yaml test
- run: stack --stack-yaml stack-ghc-8.12.yaml bench --no-run-benchmarks
stack-ghc-9_0:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: cachix/install-nix-action@v22
with:
nix_path: nixpkgs=channel:nixos-23.05
- uses: haskell/actions/setup@v2
with:
enable-stack: true
- if: ${{ runner.os == 'Linux' }}
# https://github.com/actions/runner-images/issues/7061
run: sudo chown -R $USER /usr/local/.ghcup
- uses: actions/cache@v3
with:
path: |
~/.stack
.stack-work
key: stack-${{ runner.os }}-9.0-${{ hashFiles('stack-ghc-9.0.yaml.lock') }}-3
restore-keys: |
- run: stack --stack-yaml stack-ghc-9.0.yaml build --only-dependencies
- run: stack --stack-yaml stack-ghc-9.0.yaml build
- run: stack --stack-yaml stack-ghc-9.0.yaml test
- run: stack --stack-yaml stack-ghc-9.0.yaml bench --no-run-benchmarks
stack-ghc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: cachix/install-nix-action@v22
with:
nix_path: nixpkgs=channel:nixos-23.05
- uses: haskell/actions/setup@v2
with:
enable-stack: true
- if: ${{ runner.os == 'Linux' }}
# https://github.com/actions/runner-images/issues/7061
run: sudo chown -R $USER /usr/local/.ghcup
- uses: actions/cache@v3
with:
path: |
~/.stack
.stack-work
key: stack-${{ runner.os }}-${{ hashFiles('stack.yaml.lock') }}-2
restore-keys: |
- run: stack build --only-dependencies
- run: stack build
- run: stack test
- run: stack bench --no-run-benchmarks
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: haskell-actions/run-fourmolu@v9
with:
version: "0.13.1.0"