summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorWilliam Boman <william@redwill.se>2022-10-06 01:43:20 +0200
committerGitHub <noreply@github.com>2022-10-06 01:43:20 +0200
commit28ace0317cfbda92df82f8930ed4f678cc71f38e (patch)
tree8fd9ad6b26e14801774dd83593eb18cf8aa20d61 /.github
parentfix(log): use "log" stdpath (#516) (diff)
downloadmason-28ace0317cfbda92df82f8930ed4f678cc71f38e.tar
mason-28ace0317cfbda92df82f8930ed4f678cc71f38e.tar.gz
mason-28ace0317cfbda92df82f8930ed4f678cc71f38e.tar.bz2
mason-28ace0317cfbda92df82f8930ed4f678cc71f38e.tar.lz
mason-28ace0317cfbda92df82f8930ed4f678cc71f38e.tar.xz
mason-28ace0317cfbda92df82f8930ed4f678cc71f38e.tar.zst
mason-28ace0317cfbda92df82f8930ed4f678cc71f38e.zip
ci(tests): add neovim version matrix (#515)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/tests.yml9
1 files changed, 8 insertions, 1 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index 68c2e219..aa25709d 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -8,12 +8,19 @@ on:
jobs:
tests:
+ strategy:
+ fail-fast: false
+ matrix:
+ nvim_version:
+ - v0.7.0
+ - v0.7.2
+ - v0.8.0
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: rhysd/action-setup-vim@v1
with:
neovim: true
- version: v0.7.0
+ version: ${{ matrix.nvim_version }}
- name: Run tests
run: make test