Skip to content

Tests

Tests #7

Workflow file for this run

name: Tests
on:
push:
pull_request:
schedule:
- cron: 0 0 1 * *
jobs:
tests:
strategy:
fail-fast: false
matrix:
editor: [vim, neovim]
version: [stable, nightly]
os: [ubuntu-latest, macos-latest]
name: ${{ matrix.editor }}-${{ matrix.version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: rhysd/action-setup-vim@v1
with:
version: ${{ matrix.version }}
neovim: ${{ matrix.editor == 'neovim' }}
- run: make test-${{ matrix.editor }}