Skip to content

Ship the runtime and docs with the cabal distribution #10

Ship the runtime and docs with the cabal distribution

Ship the runtime and docs with the cabal distribution #10

Workflow file for this run

name: Linting

Check failure on line 1 in .github/workflows/linting.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/linting.yml

Invalid workflow file

`hlint` is not a valid event name
on:
pull_request:
push:
branches: ["main"]
# jobs:
# fourmolu:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
#
# - uses: fourmolu/fourmolu-action@v10
# with:
# pattern: |
# src/**/*.hs
# test/**/*.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: '["src/", "test/"]'
fail-on: warning