Skip to content

Commit

Permalink
Add reviewdog workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
babarot committed Feb 25, 2020
1 parent 5582e7e commit 63c4653
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/reviewdog.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: reviewdog

on:
pull_request:
paths:
- '**.go'
- '.github/workflows/reviewdog.yml'

jobs:
golangci-lint:
name: Run golangci-lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Lint
uses: reviewdog/action-golangci-lint@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 63c4653

Please sign in to comment.