mirror of
https://github.com/xmonad/xmonad-contrib.git
synced 2025-09-02 04:03:47 -07:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4)
23 lines
385 B
YAML
23 lines
385 B
YAML
name: hlint
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
jobs:
|
|
hlint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: 'Set up HLint'
|
|
uses: haskell/actions/hlint-setup@v2
|
|
with:
|
|
version: '3.5'
|
|
|
|
- name: 'Run HLint'
|
|
uses: haskell/actions/hlint-run@v2
|
|
with:
|
|
path: '["XMonad/", "tests/", "scripts/"]'
|
|
fail-on: status
|