Skip to content

Commit

Permalink
ci: Test on differetn Neovim versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Allaman committed Oct 8, 2024
1 parent 0c6ff25 commit cd0261b
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,25 @@ jobs:
version: latest
args: --check lua
tests:
name: Run tests
timeout-minutes: 15
strategy:
fail-fast: false
matrix:
# os: [ubuntu-latest, windows-latest]
os: [ubuntu-latest]
neovim_version: ["v0.9.5", "v0.10.2", "nightly"]
include:
- os: macos-latest
neovim_version: v0.10.2
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install Neovim Nightly
- name: Setup Neovim
uses: rhysd/action-setup-vim@v1
with:
neovim: true
version: nightly
version: ${{ matrix.neovim_version }}
- name: Run Tests
run: |
nvim --version
Expand Down

0 comments on commit cd0261b

Please sign in to comment.