Add a workflow
Build / audit (push) Successful in 15m0s Details
Build / test (push) Successful in 8m5s Details

This commit is contained in:
Eugen Wissner 2023-11-27 01:06:43 +01:00
parent a961b168db
commit 5fb369257c
1 changed files with 51 additions and 0 deletions

View File

@ -0,0 +1,51 @@
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: |
ghcup run --ghc 9.4.8 -- cabal update
ghcup run --ghc 9.4.8 -- cabal install hlint --constraint="hlint ==3.6.1"
- run: ghcup run --ghc 9.4.8 -- cabal exec 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
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: |
ghcup run --ghc 9.4.8 -- cabal update
ghcup run --ghc 9.4.8 -- cabal build graphql-test
- run: ghcup run --ghc 9.4.8 -- cabal test --test-show-details=direct