Skip to content

Keep only relevant CI jobs #5

Keep only relevant CI jobs

Keep only relevant CI jobs #5

Workflow file for this run

name: Haskell - lint
on:
push:
branches:
- trunk
pull_request:
branches:
- trunk
jobs:
ormolu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: mrkkrp/ormolu-action@v11
with:
pattern: |
wasm-calc/**/*.hs
hlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- name: "Set up HLint"
uses: rwe/actions-hlint-setup@v1
with:
version: "3.5"
- name: "Run HLint"
uses: rwe/actions-hlint-run@v2
with:
path: '["wasm-calc/"]'
fail-on: warning