Mercurial > ec-dotfiles
comparison vendor/vim-packs/srcery-vim/.github/workflows/lint.yaml @ 704:1e0f578f6752
Update vendor and add support for vim packs
author | nanaya <me@nanaya.net> |
---|---|
date | Sun, 18 Dec 2022 20:06:46 +0900 |
parents | |
children | 78469331407e |
comparison
equal
deleted
inserted
replaced
703:b7cd7465cc26 | 704:1e0f578f6752 |
---|---|
1 --- | |
2 name: Check Them Vim Files | |
3 | |
4 on: | |
5 push: | |
6 pull_request: | |
7 branches: [$default-branch] | |
8 | |
9 jobs: | |
10 lint: | |
11 runs-on: ubuntu-latest | |
12 name: Linting | |
13 steps: | |
14 - uses: actions/checkout@v3 | |
15 - uses: actions/setup-python@v4 | |
16 with: | |
17 python-version: "3.x" | |
18 - name: Install Vint | |
19 run: | | |
20 python -m pip install --upgrade pip setuptools wheel | |
21 pip install --upgrade vim-vint | |
22 - name: Vinting code | |
23 run: vint --verbose --stat $(find . -type f -name '*.vim') |