Skip to content

Commit

Permalink
Re-enable fourmolu
Browse files Browse the repository at this point in the history
  • Loading branch information
tchoutri committed Jun 24, 2024
1 parent 174788c commit 4df0980
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,19 @@ on:
push:
branches: ["main"]

# jobs:
# fourmolu:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
#
# - uses: fourmolu/fourmolu-action@v10
# with:
# pattern: |
# src/**/*.hs
# test/**/*.hs
#
jobs:
fourmolu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: fourmolu/fourmolu-action@v10
with:
pattern: |
app/**/*.hs
src/**/*.hs
test/**/*.hs
hlint:
runs-on: ubuntu-latest
steps:
Expand All @@ -30,5 +31,5 @@ on:
- name: 'Run HLint'
uses: haskell-actions/hlint-run@v2
with:
path: '["src/", "test/"]'
path: '["app/", "src/", "test/"]'
fail-on: warning

0 comments on commit 4df0980

Please sign in to comment.