dotfiles/nvim/.vim/plugged/vim-devicons/.github/workflows/vint.yml

33 lines
656 B
YAML
Raw Normal View History

2024-06-19 00:06:56 +02:00
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')