Skip to content

Added github workflow #1

Added github workflow

Added github workflow #1

Workflow file for this run

name: unit-tests
on: [push, pull_request]
jobs:
linux:
name: linux
runs-on: ubuntu-latest
strategy:
matrix:
vim:
- nightly
- v9.0.0000
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.10", "3.11", "3.12"]
steps:
- name: Setup Python ${{ matrix.python-version }}
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
- name: Install jupyter_console
run: |
pip install jupyter_console
- name: Setup Vim
uses: rhysd/action-setup-vim@v1
id: vim
with:
version: ${{ matrix.vim }}
- name: Checkout vim-replica plugin code
uses: actions/checkout@v4
- name: Run Tests
run: |
uname -a
export VIMPRG=${{ steps.vim.outputs.executable }}
$VIMPRG --version
cd test
source ./run_tests.sh 1