diff options
| author | Eugen Wissner <belka@caraus.de> | 2024-03-05 23:06:32 +0100 |
|---|---|---|
| committer | Eugen Wissner <belka@caraus.de> | 2024-03-05 23:06:32 +0100 |
| commit | 16c70632242f00ac424601426575feb9ea523b75 (patch) | |
| tree | 54269033d739bb0f9a71b5e5275c309b84f41fda /.gitea/workflows/build.yml | |
| parent | cd15b25db15e8fd5ee11e4f2c11410d904ec1636 (diff) | |
| download | slackbuilder-16c70632242f00ac424601426575feb9ea523b75.tar.gz | |
Make local paths relative to cwd
Diffstat (limited to '.gitea/workflows/build.yml')
| -rw-r--r-- | .gitea/workflows/build.yml | 20 |
1 files changed, 7 insertions, 13 deletions
diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 7129f9b..a5b73e0 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -7,25 +7,19 @@ 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 lib tests + cabal update + cabal install hlint "--constraint=hlint ==3.6.1" + - run: cabal exec hlint -- src lib tests test: runs-on: alpine |
