Skip to content

Commit

Permalink
ci: add nvim-0.8 to version matrix
Browse files Browse the repository at this point in the history
Add nvim-0.8 to version matrix of the test-nvim job.

Latest stable Neovim release is 0.9; without this change, we'd be
skipping over 0.8 during tests, potentially risking compatibility
issues.

Signed-off-by: Luca Zeuch <l-zeuch@email.de>
  • Loading branch information
l-zeuch committed Aug 20, 2023
1 parent 672f9b3 commit b2dd1f2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
strategy:
fail-fast: false
matrix:
version: [v0.5.0, v0.6.0, v0.7.0, stable]
version: [v0.5.0, v0.6.0, v0.7.0, v0.8.0, stable]

steps:
- name: Checkout repository
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,13 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v2

- name: Ensure pip is installed
run: |
apt update -y && apt install python3-pip -y
- name: Install vim-vint
run: |
python -m pip install --upgrade pip
python3 -m pip install --upgrade pip
pip install vim-vint
- name: Run VimL linter
Expand Down

0 comments on commit b2dd1f2

Please sign in to comment.