Skip to content

build(deps): bump vimfiles/pack/git-plugins/start/ale from 8922478 to 6fd9f3c #72

build(deps): bump vimfiles/pack/git-plugins/start/ale from 8922478 to 6fd9f3c

build(deps): bump vimfiles/pack/git-plugins/start/ale from 8922478 to 6fd9f3c #72

Workflow file for this run

---
name: Lint
"on":
push:
branches:
- main
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Set up Python 3.9
id: python39
uses: actions/setup-python@v5
with:
python-version: 3.9
check-latest: true
- name: Vint
shell: bash
run: |
pipx install --python '${{ steps.python39.outputs.python-path }}' vim-vint
vint $(git ls-files -s '.*vim*' '**/*.vim' | awk '!/^16/ {print $4}')
- name: yamllint
shell: bash
run: |
pipx install yamllint
yamllint $(git ls-files -s '*.yml' '**/*.yml' '*.yaml' '**/*.yaml' | awk '!/^16/ {print $4}')