From f04f8249646ff6a0c712e61ef1c89aae6714847d Mon Sep 17 00:00:00 2001 From: Luke Lau Date: Sat, 21 Mar 2020 16:48:54 +0000 Subject: [PATCH] Just move it into the one file --- .github/workflows/haskell.yml | 10 +++++++++- .github/workflows/hlint.yml | 11 ----------- 2 files changed, 9 insertions(+), 12 deletions(-) delete mode 100644 .github/workflows/hlint.yml 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 }} -- 2.30.2