mirror of
https://github.com/preservim/vim-pencil.git
synced 2025-11-17 22:33:39 -05:00
17 lines
381 B
YAML
17 lines
381 B
YAML
name: Vint
|
|
on: [push, pull_request]
|
|
jobs:
|
|
vint:
|
|
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 .
|