Fix calls to get graph window lines/cols #280
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: "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/gh-actions-lua@v10.0.0" | |
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" |