Skip to content

Bump actions/checkout from 2 to 4 (#17) #96

Bump actions/checkout from 2 to 4 (#17)

Bump actions/checkout from 2 to 4 (#17) #96

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@v5
with:
pattern: |
app/**/*.hs
hlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: 'Set up HLint'
uses: rwe/actions-hlint-setup@v1
with:
version: '3.5'
- name: 'Run HLint'
uses: rwe/actions-hlint-run@v1
with:
path: '["app/"]'
fail-on: warning