mirror of
https://github.com/preservim/nerdcommenter.git
synced 2025-11-14 12:43:47 -05:00
Add vimscript linter as CI check
This commit is contained in:
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 .
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
# NERD Commenter
|
# NERD Commenter [](https://github.com/preservim/nerdcommenter/actions?workflow=Vint)
|
||||||
|
|
||||||
Comment functions so powerful—no comment necessary.
|
Comment functions so powerful—no comment necessary.
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user