view vendor/vim-packs/srcery-vim/.github/workflows/lint.yaml @ 714:14e2910879f0

Combine sunos handler
author nanaya <me@nanaya.net>
date Thu, 19 Oct 2023 05:52:45 +0900
parents 1e0f578f6752
children 78469331407e
line wrap: on
line source

---
name: Check Them Vim Files

on:
  push:
  pull_request:
    branches: [$default-branch]

jobs:
  lint:
    runs-on: ubuntu-latest
    name: Linting
    steps:
      - uses: actions/checkout@v3
      - uses: actions/setup-python@v4
        with:
          python-version: "3.x"
      - name: Install Vint
        run: |
          python -m pip install --upgrade pip setuptools wheel
          pip install --upgrade vim-vint
      - name: Vinting code
        run: vint --verbose --stat $(find . -type f -name '*.vim')