Skip to content

Test using a matrix of (neo)vim versions #201

Test using a matrix of (neo)vim versions

Test using a matrix of (neo)vim versions #201

Workflow file for this run

---
name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip'
- uses: rhysd/action-setup-vim@v1
id: vim
- run: make lint VIM=${{ steps.vim.outputs.executable }}
test:

Check failure on line 25 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 25
strategy:
fail-fast: false
matrix:
vim:
- version: stable
- version: v8.2.0000
- version: stable
neovim: true
name: 'test (${{ matrix.vim.neovim && 'neo'}}vim ${{ matrix.vim.version }})'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: rhysd/action-setup-vim@v1
id: vim
with:
neovim: ${{ matrix.vim.neovim }}
version: ${{ matrix.vim.version }}
- run: make test VIM=${{ steps.vim.outputs.executable }}