Skip to content

Bump mikepenz/action-junit-report from 4 to 5 (#36) #167

Bump mikepenz/action-junit-report from 4 to 5 (#36)

Bump mikepenz/action-junit-report from 4 to 5 (#36) #167

Workflow file for this run

name: Linting
on:
pull_request:
push:
branches: ["main"]
jobs:
fourmolu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: fourmolu/fourmolu-action@v10
with:
pattern: |
app/**/*.hs
src/**/*.hs
compat/**/*.hs
hlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: 'Set up HLint'
uses: haskell-actions/hlint-setup@v2
with:
version: '3.8'
- name: 'Run HLint'
uses: haskell-actions/hlint-run@v2
with:
path: '["app", "src", "compat"]'
fail-on: warning