51 lines
1.2 KiB
YAML
51 lines
1.2 KiB
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
|
|
- uses: actions/checkout@v4
|
|
- name: Install dependencies
|
|
run: |
|
|
cabal update
|
|
cabal install hlint "--constraint=hlint ==3.8"
|
|
- run: cabal exec hlint -- src 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
|
|
- uses: actions/checkout@v4
|
|
- name: Install dependencies
|
|
run: cabal update
|
|
- name: Prepare system
|
|
run: cabal build graphql-test
|
|
- run: cabal test --test-show-details=streaming
|
|
|
|
doc:
|
|
runs-on: haskell
|
|
steps:
|
|
- name: Set up environment
|
|
run: |
|
|
apt-get update -y
|
|
apt-get upgrade -y
|
|
apt-get install -y nodejs pkg-config
|
|
- uses: actions/checkout@v4
|
|
- name: Install dependencies
|
|
run: cabal update
|
|
- run: cabal haddock --enable-documentation
|