-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from domdere/topic/readme
README.md
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
An action that runs `hlint` checks over Haskell code. | ||
|
||
If there are errors found in the Haskell code then the action will fail. | ||
|
||
Example workflow: | ||
|
||
``` | ||
workflow "Code Checks" { | ||
on = "push" | ||
resolves = ["haskell-lint"] | ||
} | ||
action "haskell-lint" { | ||
uses = "domdere/haskell-lint-action@master" | ||
} | ||
``` | ||
|
||
## TODOs | ||
|
||
- [ ] Opens proper GitHub check runs | ||
- [ ] Annotates lines in PR with suggestions |