Just move it into the one file hlint-ci
authorLuke Lau <luke_lau@icloud.com>
Sat, 21 Mar 2020 16:48:54 +0000 (16:48 +0000)
committerLuke Lau <luke_lau@icloud.com>
Sat, 21 Mar 2020 16:48:54 +0000 (16:48 +0000)
.github/workflows/haskell.yml
.github/workflows/hlint.yml [deleted file]

index 06086160c15dc9edb78f3c39a7b2f82b493bd097..c60c723906f1396ee29a246065de77807d7d64bf 100644 (file)
@@ -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 (file)
index 6f73130..0000000
+++ /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 }}