From: Luke Lau Date: Sat, 21 Mar 2020 16:48:54 +0000 (+0000) Subject: Just move it into the one file X-Git-Url: https://git.lukelau.me/?p=lsp-test.git;a=commitdiff_plain;h=refs%2Fheads%2Fhlint-ci Just move it into the one file --- diff --git a/.github/workflows/haskell.yml b/.github/workflows/haskell.yml index 0608616..c60c723 100644 --- a/.github/workflows/haskell.yml +++ b/.github/workflows/haskell.yml @@ -1,7 +1,15 @@ -name: Haskell CI +name: Haskell 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 }} + build: runs-on: ${{ matrix.os }} diff --git a/.github/workflows/hlint.yml b/.github/workflows/hlint.yml deleted file mode 100644 index 6f73130..0000000 --- a/.github/workflows/hlint.yml +++ /dev/null @@ -1,11 +0,0 @@ -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 }}