mirror of
https://github.com/xmonad/xmonad-contrib.git
synced 2025-08-26 09:03:48 -07:00
.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
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")
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@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
|