mirror of
https://github.com/chenasraf/vim-matchup.git
synced 2026-05-18 01:38:57 +00:00
39 lines
796 B
YAML
39 lines
796 B
YAML
name: Linting and style checking
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
luacheck:
|
|
name: Luacheck
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Prepare
|
|
run: |
|
|
sudo apt-get update
|
|
sudo add-apt-repository universe
|
|
sudo apt install luarocks -y
|
|
sudo luarocks install luacheck
|
|
|
|
- name: Run Luacheck
|
|
run: sudo ./test/scripts/style-check.sh
|
|
|
|
vint:
|
|
name: Vint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Install python
|
|
uses: actions/setup-python@v4
|
|
|
|
- name: Install vint
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install vim-vint
|
|
|
|
- name: Lint with vint
|
|
run: |
|
|
vint plugin autoload
|