Skip to content

Fix running shell commands on older versions of Vim #389

Fix running shell commands on older versions of Vim

Fix running shell commands on older versions of Vim #389

Workflow file for this run

name: "test status"
on:
- "push"
jobs:
test:
runs-on: "ubuntu-22.04"
strategy:
matrix:
include:
- vim_type: "Vim"
vim_version: "v8.2.4212"
lua_version: "luajit-openresty"
nvim: "false"
- vim_type: "Vim"
vim_version: "v9.0.1205"
lua_version: "luajit-openresty"
nvim: "false"
- vim_type: "Neovim"
vim_version: "head"
nvim: "true"
steps:
- name: "checkout"
uses: "actions/checkout@v2"
with:
fetch-depth: 5
- name: "install lua"
uses: "leafo/[email protected]"
with:
luaVersion: "${{ matrix.lua_version }}"
if: "${{ matrix.lua_version }}"
- name: "install ${{ matrix.vim_type }}"
uses: "thinca/action-setup-vim@v1"
with:
vim_version: "${{ matrix.vim_version }}"
vim_type: "${{ matrix.vim_type }}"
- name: "run tests"
run: "NVIM=${{ matrix.nvim }} ./t/run.sh"