summaryrefslogtreecommitdiff
path: root/.gitea/workflows/build.yml
blob: 6851bbd21c14eb9e54b837cbff56a90c77bbbcd5 (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
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
name: Build

on:
  push:
  pull_request:
    branches: [master]

jobs:
  audit:
    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
          ~/.ghcup/bin/ghcup run --ghc 9.4.8 --cabal 3.6.2.0 -- cabal install hlint --constraint="hlint ==3.6.1"
      - run: ~/.cabal/bin/hlint -- src tests

  test:
    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
          ~/.ghcup/bin/ghcup run --ghc 9.4.8 --cabal 3.6.2.0 -- cabal build graphql-test
      - run: ~/.ghcup/bin/ghcup run --ghc 9.4.8 --cabal 3.6.2.0 -- cabal test --test-show-details=direct

  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