Skip to content

Commit ae29a74

Browse files
committed
chore: Normalize lint CI jobs with other plugin projects
1 parent 5329793 commit ae29a74

File tree

2 files changed

+16
-20
lines changed

2 files changed

+16
-20
lines changed

.github/workflows/reviewdog.yml

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,12 @@ name: Reviewdog
22
on: [pull_request]
33
jobs:
44
vint:
5-
strategy:
6-
fail-fast: false
5+
name: vint
76
runs-on: ubuntu-latest
87
steps:
9-
- name: Checkout
10-
uses: actions/checkout@v2
11-
- name: Lint Vimscript in PR changes
12-
uses: reviewdog/action-vint@v1
13-
with:
14-
github_token: ${{ secrets.github_token }}
15-
reporter: github-pr-review
16-
level: info
8+
- uses: actions/checkout@v2
9+
- name: vint
10+
uses: reviewdog/action-vint@v1
11+
with:
12+
github_token: ${{ secrets.github_token }}
13+
reporter: github-pr-review

.github/workflows/vint.yml

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,14 @@ name: Vint
22
on: [push]
33
jobs:
44
vint:
5-
strategy:
6-
fail-fast: false
5+
name: vint
76
runs-on: ubuntu-latest
87
steps:
9-
- name: Checkout
10-
uses: actions/checkout@v2
11-
- name: Set up Python
12-
uses: actions/setup-python@v2
13-
- name: Setup dependencies
14-
run: pip install vim-vint
15-
- name: Lint Vimscript
16-
run: vint .
8+
- name: Checkout
9+
uses: actions/checkout@v2
10+
- name: Set up Python
11+
uses: actions/setup-python@v2
12+
- name: Setup dependencies
13+
run: pip install vim-vint
14+
- name: Lint Vimscript
15+
run: vint .

0 commit comments

Comments
 (0)