Skip to content

domdere/haskell-lint-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Haskell Lint GitHub Action

An action that runs hlint checks over Haskell code.

If there are errors found in the Haskell code then the action will fail.

It will insert inline suggestions into the PR:

Usage

Example Workflow

workflow "Code Checks" {
  on = "push"
  resolves = ["haskell-lint"]
}

action "haskell-lint" {
  uses = "domdere/haskell-lint-action@master"
  secrets = ["GITHUB_TOKEN"]
}

The GITHUB_TOKEN checkbox must be explicitly checked so that the action can create GitHub Check Runs.

Configuration

Configuration is done by setting environment variables

Name Description Required/Optional(Default)
HLINT_ACTION_LOG_LEVEL Sets the log level for the action, or debugging purposes, one of [trace, debug, info, warn, error, fatal] Optional(info)
ACTION_TIMEOUT The timeout duration in integer seconds before the hlint check declares a timeout result for the GitHub Check Optional(15)

TODOs

  • Opens proper GitHub check runs
  • Annotates lines in PR with suggestions
  • Support hlint.yaml in repos
  • Support hlint.yaml by reference (from S3/GitHub/etc...)