CI: add lua lint check #23
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests on vim and neovim | ||
# Controls when the workflow will run | ||
on: | ||
# Triggers the workflow on push or pull request events but only for the master branch | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
jobs: | ||
lint: | ||
name: Lint code with Vint and shellcheck | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-python@v1 | ||
- name: Install vint | ||
run: pip install --pre vim-vint | ||
- name: Lint vimscript files | ||
run: vint --warning --enable-neovim ./after ./autoload ./compiler ./ftdetect ./ftplugin ./indent ./syntax | ||
- uses: ludeeus/action-shellcheck@master | ||
tests: | ||
runs-on: ubuntu-latest | ||
needs: lint | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
editor: ["vim", "nvim"] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup Vim / Neovim | ||
uses: rhysd/action-setup-vim@v1 | ||
id: vim | ||
with: | ||
neovim: ${{ matrix.editor == "nvim" }} | ||
Check failure on line 38 in .github/workflows/vader.yml GitHub Actions / Tests on vim and neovimInvalid workflow file
|
||
- name: Run Vader unit tests | ||
run: | | ||
TESTVIM=${{ matrix.editor }} | ||
export TESTVIM | ||
./test/run-tests.sh |