mirror of
https://github.com/posva/vim-vue.git
synced 2026-01-23 15:42:05 +08:00
Introduces a configuration for GitHub Actions to test with various operating systems and versions of Vim.
23 lines
480 B
YAML
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 }}
|