mirror of
https://github.com/preservim/nerdcommenter.git
synced 2024-11-25 09:40:57 +08:00
Add vimscript linter as CI check
This commit is contained in:
parent
8786861a3c
commit
8a68872933
18
.github/workflows/vint.yml
vendored
Normal file
18
.github/workflows/vint.yml
vendored
Normal file
|
@ -0,0 +1,18 @@
|
|||
name: Vint
|
||||
on: [push, pull_request]
|
||||
jobs:
|
||||
vint:
|
||||
strategy:
|
||||
fail-fast: false
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@master
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v1
|
||||
with:
|
||||
python-version: 3.7
|
||||
- name: Setup dependencies
|
||||
run: pip install vim-vint
|
||||
- name: Run Vimscript Linter
|
||||
run: vint .
|
Loading…
Reference in New Issue
Block a user