Update the GitHub actions status badge #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: analysis | |
on: | |
pull_request: | |
jobs: | |
check: | |
name: pre-merge-checks | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone Repository | |
uses: actions/checkout@v4 | |
- name: Setup Haskell | |
id: setup-haskell-cabal | |
uses: haskell/actions/setup@v2 | |
- name: Cabal Check | |
run: cabal check | |
- name: Set Up HLint | |
uses: haskell/actions/hlint-setup@v2 | |
- name: Run HLint | |
uses: haskell/actions/hlint-run@v2 | |
with: | |
path: ./ | |
fail-on: warning |