32 lines
656 B
YAML
32 lines
656 B
YAML
name: vint
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
python-version: [3.8]
|
|
|
|
steps:
|
|
- uses: actions/checkout@main
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@main
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
- name: Install vint
|
|
run: |
|
|
pip install vim-vint
|
|
- name: Run vint
|
|
run: |
|
|
vint --verbose --stat $(find . -type f -name '*.vim')
|