Skip to content

Update actions/checkout digest to a5ac7e5 #652

Update actions/checkout digest to a5ac7e5

Update actions/checkout digest to a5ac7e5 #652

Workflow file for this run

name: Haskell - lint
on: [push]
jobs:
ormolu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4
- uses: haskell-actions/run-ormolu@v14
with:
pattern: |
builder/**/*.hs
smol-backend/**/*.hs
smol-core/**/*.hs
smol-interpreter/**/*.hs
smol-modules/**/*.hs
smol-repl/**/*.hs
smol-typechecker/**/*.hs
smol-wasm/**/*.hs
hlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4
- name: "Set up HLint"
uses: rwe/actions-hlint-setup@v1
with:
version: "3.6.1"
- name: "Run HLint"
uses: rwe/actions-hlint-run@v2
with:
path: '["builder/", "smol-backend/", "smol-core/", "smol-interpreter/", "smol-modules/", "smol-repl/", "smol-typechecker/", "smol-wasm/"]'
fail-on: warning