summaryrefslogtreecommitdiff
path: root/.gitea
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2024-04-02 21:07:31 +0200
committerEugen Wissner <belka@caraus.de>2024-04-02 22:06:16 +0200
commit6b8346e5278f71fb813bb564dbb40907a37df6e7 (patch)
treebe8f32d488d4e5311de71a2511ac4ee02263aafb /.gitea
parent303f84ed417b8f52d597e705c88d13a99dbeb7ca (diff)
downloadgraphql-6b8346e5278f71fb813bb564dbb40907a37df6e7.tar.gz
Update hlint to 3.8
Diffstat (limited to '.gitea')
-rw-r--r--.gitea/workflows/build.yml40
1 files changed, 14 insertions, 26 deletions
diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml
index 6851bbd..74e222c 100644
--- a/.gitea/workflows/build.yml
+++ b/.gitea/workflows/build.yml
@@ -7,46 +7,34 @@ on:
jobs:
audit:
- runs-on: alpine
+ runs-on: haskell
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
+ 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: |
- ~/.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
+ cabal update
+ cabal install hlint "--constraint=hlint ==3.8"
+ - run: cabal exec hlint -- src tests
test:
- runs-on: alpine
+ runs-on: haskell
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
+ 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: |
- ~/.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
+ cabal update
+ cabal build graphql-test
+ - run: cabal test --test-show-details=streaming
doc:
runs-on: alpine