mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 13:50:04 +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 .
|