Add CI job that lints VimL and reviews PRs

This commit is contained in:
Caleb Maclennan 2019-12-31 07:52:14 +03:00
parent fff3975608
commit ec0fca4c7d
No known key found for this signature in database
GPG Key ID: 63CC496475267693

15
.github/workflows/vint.yml vendored Normal file
View File

@ -0,0 +1,15 @@
name: Vint
on: [push, pull_request]
jobs:
vint:
strategy:
fail-fast: false
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
- name: Run vint with reviewdog
uses: reviewdog/action-vint@v1.0.1
with:
github_token: ${{ secrets.github_token }}
reporter: github-pr-review