Skip to content

Bump actions/cache from 4.0.0 to 4.0.1 (#42) #60

Bump actions/cache from 4.0.0 to 4.0.1 (#42)

Bump actions/cache from 4.0.0 to 4.0.1 (#42) #60

Workflow file for this run

# Runs on pull requests against master, and on master branch
name: Haskell Lint
on:
push:
branches:
- master
pull_request:
branches: [ master ]
paths:
- '.github/workflows/hlint.yml'
- 'app/**/*.hs'
- 'src/**/*.hs'
- 'test/**/*.hs'
jobs:
hlint:
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
HLINT_ACTION_LOG_LEVEL: debug
steps:
- name: Check out
uses: actions/checkout@v4
- name: Set up HLint
uses: rwe/actions-hlint-setup@v1
- name: Haskell Lint
uses: rwe/actions-hlint-run@v2
with:
path: '["src/", "test/", "app/"]'
fail-on: warning