From 411c95cbb976da60c3005cc8f0d7e4d7c2c1fcaa Mon Sep 17 00:00:00 2001 From: Eugen Wissner Date: Mon, 27 Nov 2023 01:06:43 +0100 Subject: [PATCH] Add a workflow --- .gitea/workflows/build.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .gitea/workflows/build.yml diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml new file mode 100644 index 0000000..ddc314d --- /dev/null +++ b/.gitea/workflows/build.yml @@ -0,0 +1,27 @@ +name: Build + +on: [push] +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 + echo "$HOME/.ghcup/bin" >> $GITHUB_PATH + echo "$HOME/.cabal/bin" >> $GITHUB_PATH + - 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 install ghc 9.4.8 + ghcup install cabal 3.6.2.0 + ghcup set ghc 9.4.8 + - uses: actions/checkout@v4 + - name: Install dependencies + run: | + cabal update + cabal install hlint --constraint="hlint ==3.6.1" + - run: cabal exec hlint -- src tests