Skip to content

Commit 0e3ebca

Browse files
committed
Add CI job to run vint linter
1 parent bde8b4c commit 0e3ebca

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/vint.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Vint
2+
on: [push, pull_request]
3+
jobs:
4+
vint:
5+
strategy:
6+
fail-fast: false
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout
10+
uses: actions/checkout@master
11+
- name: Run vint with reviewdog
12+
uses: reviewdog/[email protected]
13+
with:
14+
github_token: ${{ secrets.github_token }}
15+
reporter: github-pr-review

0 commit comments

Comments
 (0)