37 lines
853 B
YAML
37 lines
853 B
YAML
name: Build
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
branches: [master]
|
|
|
|
jobs:
|
|
audit:
|
|
runs-on: haskell
|
|
steps:
|
|
- name: Set up environment
|
|
run: |
|
|
apt-get update -y
|
|
apt-get upgrade -y
|
|
apt-get install -y nodejs pkg-config liblzma-dev
|
|
- uses: actions/checkout@v4
|
|
- name: Install dependencies
|
|
run: |
|
|
cabal update
|
|
cabal install hlint "--constraint=hlint ==3.8"
|
|
- run: cabal exec hlint -- src lib tests
|
|
|
|
test:
|
|
runs-on: haskell
|
|
steps:
|
|
- name: Set up environment
|
|
run: |
|
|
apt-get update -y
|
|
apt-get upgrade -y
|
|
apt-get install -y nodejs pkg-config liblzma-dev
|
|
- uses: actions/checkout@v4
|
|
- name: Install dependencies
|
|
run: |
|
|
cabal update
|
|
- run: cabal test --test-show-details=streaming
|