aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/autogenerate.yml2
-rw-r--r--.github/workflows/check-generated-code-state.yml2
-rw-r--r--.github/workflows/tests.yml13
3 files changed, 14 insertions, 3 deletions
diff --git a/.github/workflows/autogenerate.yml b/.github/workflows/autogenerate.yml
index 04979ed..7e1d125 100644
--- a/.github/workflows/autogenerate.yml
+++ b/.github/workflows/autogenerate.yml
@@ -13,7 +13,7 @@ jobs:
- uses: rhysd/action-setup-vim@v1
with:
neovim: true
- version: v0.8.3
+ version: v0.9.0
- name: make generate
run: make generate
diff --git a/.github/workflows/check-generated-code-state.yml b/.github/workflows/check-generated-code-state.yml
index 886ca36..40abcfe 100644
--- a/.github/workflows/check-generated-code-state.yml
+++ b/.github/workflows/check-generated-code-state.yml
@@ -14,7 +14,7 @@ jobs:
- uses: rhysd/action-setup-vim@v1
with:
neovim: true
- version: v0.8.3
+ version: v0.9.0
- name: make generate
run: make generate
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index 110635a..7bc533b 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -10,13 +10,24 @@ on:
jobs:
tests:
+ strategy:
+ fail-fast: false
+ matrix:
+ nvim_version:
+ - v0.7.0
+ - v0.7.2
+ - v0.8.0
+ - v0.8.1
+ - v0.8.2
+ - v0.8.3
+ - v0.9.0
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: rhysd/action-setup-vim@v1
with:
neovim: true
- version: v0.8.3
+ version: ${{ matrix.nvim_version }}
- name: Run tests
run: |
set -e