From b2dd1f225f1ef5ef127e3d1e2ac3676d326eb682 Mon Sep 17 00:00:00 2001 From: Luca Zeuch Date: Sun, 20 Aug 2023 05:08:55 +0200 Subject: [PATCH] ci: add nvim-0.8 to version matrix 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 --- .github/workflows/ci.yml | 2 +- .github/workflows/lint.yml | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ed24c85..beb3af9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 4d0a442..fc2d738 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -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