Skip to content

Bump actions/checkout from 4 to 5 #5

Bump actions/checkout from 4 to 5

Bump actions/checkout from 4 to 5 #5

Workflow file for this run

name: Linting
on:
pull_request:
push:
branches: ["main"]
jobs:
fourmolu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: fourmolu/fourmolu-action@v11
with:
version: "0.17.0.0"
pattern: |
src/**/*.hs
hlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- 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: '["src/"]'
fail-on: warning