Skip to content

Commit

Permalink
Merge pull request #9 from vim-denops/add-reviewdog
Browse files Browse the repository at this point in the history
☕ Add GitHub Action for reviewdog
  • Loading branch information
lambdalisue committed Nov 5, 2023
2 parents a91f6d4 + e0caa95 commit dce105f
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/reviewdog.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: reviewdog

on:
push:
branches:
- main
pull_request:

jobs:
misspell:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: misspell
uses: reviewdog/action-misspell@v1
with:
github_token: ${{ secrets.github_token }}
locale: "US"

0 comments on commit dce105f

Please sign in to comment.