blob: f67eda7219e58bc93a53d6cbd65cd49c88a77159 (
plain)
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
|
on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches:
- 'master'
jobs:
actions:
strategy:
matrix:
- version: [9.6, 9.4, 8]
runs-on: docker
container:
image: haskell:${{ matrix.version }}
steps:
- name: apt ${{ matrix.version }}
run: |
apt-get update
apt-get install -y xorg-dev libxrandr-dev libpango1.0-dev
apt-get install -y libasound2-dev libxpm-dev libmpd-dev
apt-get install -y hspec-discover hlint
- name: hlint ${{ matrix.version }}
run: hlint ./src
- name: cabal tests ${{ matrix.version }}
run: |
cabal update
cabal test --enable-tests -fall_extensions
cabal test --enable-tests -fall_extensions -f-with_xrender
|