From 91e68d7531106bcfe6c0251e809e7d8ce7f4adef Mon Sep 17 00:00:00 2001 From: Luke Lau Date: Sat, 21 Mar 2020 16:45:13 +0000 Subject: [PATCH] Try out this hlint ci thing --- .github/workflows/hlint.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/hlint.yml diff --git a/.github/workflows/hlint.yml b/.github/workflows/hlint.yml new file mode 100644 index 0000000..6f73130 --- /dev/null +++ b/.github/workflows/hlint.yml @@ -0,0 +1,11 @@ +name: Hlint + +on: [push, pull_request] +jobs: + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: domdere/haskell-lint-action@v1.0.2 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} -- 2.30.2