Skip to content

Support Vim v9.0.2000 #89

Support Vim v9.0.2000

Support Vim v9.0.2000 #89

Workflow file for this run

name: Test
on:
push:
branches:
- master
- vim9
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
neovim:
- false
version:
- nightly
- v9.0.2000
- v9.0.1000
- v9.0.0000
- v8.2.5000
- v8.2.4053
steps:
- uses: actions/checkout@v4
- name: Setup Vim
uses: rhysd/action-setup-vim@v1
id: vim
with:
neovim: ${{ matrix.neovim }}
version: ${{ matrix.version }}
- name: Setup vim-themis
uses: actions/checkout@v4
with:
repository: thinca/vim-themis
path: vim-themis
- name: Run tests
shell: bash -xe {0}
env:
VIM_EXECUTABLE: ${{ steps.vim.outputs.executable }}
run: |
export PATH="./vim-themis/bin:$PATH"
make "test-$(basename "$VIM_EXECUTABLE")"