graphql/.gitea/workflows/build.yml

57 lines
1.6 KiB
YAML
Raw Normal View History

2023-11-27 01:06:43 +01:00
name: Build
on:
push:
pull_request:
branches: [master]
jobs:
audit:
2024-04-02 21:07:31 +02:00
runs-on: haskell
2023-11-27 01:06:43 +01:00
steps:
- name: Set up environment
run: |
2024-04-02 21:07:31 +02:00
apt-get update -y
apt-get upgrade -y
apt-get install -y nodejs pkg-config liblzma-dev
2023-11-27 01:06:43 +01:00
- uses: actions/checkout@v4
- name: Install dependencies
run: |
2024-04-02 21:07:31 +02:00
cabal update
cabal install hlint "--constraint=hlint ==3.8"
- run: cabal exec hlint -- src tests
2023-11-27 01:06:43 +01:00
test:
2024-04-02 21:07:31 +02:00
runs-on: haskell
2023-11-27 01:06:43 +01:00
steps:
- name: Set up environment
run: |
2024-04-02 21:07:31 +02:00
apt-get update -y
apt-get upgrade -y
apt-get install -y nodejs pkg-config liblzma-dev
2023-11-27 01:06:43 +01:00
- uses: actions/checkout@v4
- name: Install dependencies
run: |
2024-04-02 21:07:31 +02:00
cabal update
cabal build graphql-test
- run: cabal test --test-show-details=streaming
2023-11-27 01:06:43 +01:00
doc:
runs-on: alpine
steps:
- name: Set up environment
shell: ash {0}
run: |
apk add --no-cache git bash curl build-base readline-dev openssl-dev zlib-dev libpq-dev gmp-dev
- name: Prepare system
run: |
curl --create-dirs --output-dir \
~/.ghcup/bin https://downloads.haskell.org/~ghcup/0.1.19.5/x86_64-linux-ghcup-0.1.19.5 -o ghcup
chmod +x ~/.ghcup/bin/ghcup
~/.ghcup/bin/ghcup install ghc 9.4.8
~/.ghcup/bin/ghcup install cabal 3.6.2.0
- uses: actions/checkout@v4
- name: Install dependencies
run: ~/.ghcup/bin/ghcup run --ghc 9.4.8 --cabal 3.6.2.0 -- cabal update
- run: ~/.ghcup/bin/ghcup run --ghc 9.4.8 --cabal 3.6.2.0 -- cabal haddock --enable-documentation