Files
vim-vue/.github/workflows/test.yml
Adriaan Zonnenberg 73e822c8f4 Migrate to GitHub Actions
Introduces a configuration for GitHub Actions to test with various
operating systems and versions of Vim.
2024-03-30 12:44:25 +01:00

23 lines
480 B
YAML

name: Tests
on:
push:
pull_request:
jobs:
tests:
strategy:
fail-fast: false
matrix:
editor: [vim, neovim]
version: [stable, nightly]
os: [ubuntu-latest, macos-latest]
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 }}