chore(deps): bump actions/upload-artifact from 3 to 4 #42
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/[email protected] | |
- 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 |