Bump haskell-actions/run-fourmolu from 10 to 11 #10
Workflow file for this run
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: Linters | |
on: | |
- push | |
- pull_request | |
jobs: | |
cabal-gild: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout repository' | |
uses: actions/checkout@v4 | |
- name: 'Set up cabal-gild' | |
uses: tfausak/cabal-gild-setup-action@v2 | |
- name: 'Run cabal-gild' | |
run: cabal-gild --mode check --input typed-process-effectful.cabal | |
fourmolu: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout repository' | |
uses: actions/checkout@v4 | |
- name: 'Run fourmolu' | |
uses: haskell-actions/run-fourmolu@v11 | |
hlint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout repository' | |
uses: actions/checkout@v4 | |
- name: 'Set up hlint' | |
uses: haskell-actions/hlint-setup@v2 | |
- name: 'Run hlint' | |
uses: haskell-actions/hlint-run@v2 | |
with: | |
path: './' | |
fail-on: suggestion |