1
0
mirror of https://github.com/xmonad/xmonad-contrib.git synced 2025-08-26 09:03:48 -07:00
Files
.github
workflows
haskell-ci-dependabot.patch
haskell-ci-hackage.patch
haskell-ci.yml
hlint.yaml
nix.yml
packdeps.yml
stack.yml
ISSUE_TEMPLATE.md
PULL_REQUEST_TEMPLATE.md
dependabot.yml
XMonad
scripts
tests
.gitignore
.hlint.yaml
.mailmap
CHANGES.md
CONTRIBUTING.md
LICENSE
NIX.md
README.md
Setup.lhs
cabal.haskell-ci
cabal.project
flake.nix
stack-master.yaml
stack.yaml
xmonad-contrib.cabal
xmonad-contrib/.github/workflows/hlint.yaml
Tomas Janousek e2ffa533da ci: Unpin runner in hlint workflow; bump hlint to 3.5
hlint 3.5 is built against libtinfo6 and works on Ubuntu 22.04 without
needing to install libtinfo5.

Fixes: b7afb0c0bc ("ci: Pin runner in hlint, nix workflows to ubuntu-20.04")
2023-01-02 20:45:19 +01:00

23 lines
385 B
YAML

name: hlint
on:
push:
pull_request:
jobs:
hlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- 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