mirror of
https://github.com/preservim/nerdcommenter.git
synced 2024-11-24 09:47:13 +08:00
17 lines
334 B
YAML
17 lines
334 B
YAML
name: Vint
|
|
on: [push]
|
|
jobs:
|
|
vint:
|
|
strategy:
|
|
fail-fast: false
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v2
|
|
- name: Setup dependencies
|
|
run: pip install vim-vint
|
|
- name: Lint Vimscript
|
|
run: vint .
|