Skip to content

CI: Fix hlint workflow #1965

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 6 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/check-fourmolu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Check Fourmolu

on:
push: {}
merge_group: {}
pull_request:

jobs:
build:
Expand Down
13 changes: 8 additions & 5 deletions .github/workflows/check-hlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Check HLint

on:
push: {}
merge_group: {}
pull_request: {}

jobs:
build:
Expand All @@ -16,17 +16,20 @@ jobs:
- uses: actions/checkout@v3

- name: Install dependencies
run: sudo apt-get -y install libtinfo5
run: sudo apt-get -y install libtinfo6

- name: Set up HLint
uses: rwe/actions-hlint-setup@v1
uses: rwe/actions-hlint-setup@v1.0.3
with:
version: "3.2.7"
version: "3.2.8"

- name: Run HLint
uses: rwe/actions-hlint-run@v2
uses: rwe/actions-hlint-run@v2.0.1
with:
path: "."
fail-on: error

- name: Setup tmate session
if: ${{ failure() }}
uses: mxschmitt/action-tmate@v3

Loading