summaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorJames Mills <1290234+prologic@users.noreply.github.com>2020-01-28 05:51:44 +1000
committerGitHub <noreply@github.com>2020-01-28 05:51:44 +1000
commitf8d3b2cb46bb608a3a80c3d00b57cae38eae3d6c (patch)
treec9fa46ea60a2a1d470c2b2330b5b5aa3a05cb584 /.github/workflows
parentd307ba7ec545f9e76f55cd9f2af08ffd6db6fbc2 (diff)
Added ReviewDOg CI checks for Golang (#7827)
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/reviewdog.yml13
1 files changed, 12 insertions, 1 deletions
diff --git a/.github/workflows/reviewdog.yml b/.github/workflows/reviewdog.yml
index e40ce46807..c8e7d147f8 100644
--- a/.github/workflows/reviewdog.yml
+++ b/.github/workflows/reviewdog.yml
@@ -1,6 +1,17 @@
name: reviewdog
on: [pull_request]
jobs:
+ golangci-lint:
+ name: runner / golangci-lint
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v1
+ - name: golangci-lint
+ uses: reviewdog/action-golangci-lint@v1
+ with:
+ github_token: ${{ secrets.GITHUB_TOKEN }}
+ reporter: github-pr-check
+
eslint:
name: runner / eslint
runs-on: ubuntu-latest
@@ -25,4 +36,4 @@ jobs:
reporter: github-pr-check
path: "."
pattern: "*.sh*"
- exclude: "./.git/*"
+ exclude: "./.git/*" \ No newline at end of file