Mercurial > ec-dotfiles
view vendor/vim-packs/srcery-vim/.github/workflows/lint.yaml @ 719:bcdf320dabf4
Rewrite the ed2k again in php
Getting openssl to hash md4 is a pain.
author | nanaya <me@nanaya.net> |
---|---|
date | Sun, 10 Dec 2023 00:35:22 +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')