Skip to content

Merge pull request #149 from seblyng/root-dir-fix #4

Merge pull request #149 from seblyng/root-dir-fix

Merge pull request #149 from seblyng/root-dir-fix #4

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
# Nightly can often fail as it is a moving target so disable fail-fast so
# we can always see if the over versions pass or not.
fail-fast: false
matrix:
neovim_branch:
- "v0.10.3"
- "nightly"
env:
NVIM_TEST_VERSION: ${{ matrix.neovim_branch }}
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: leafo/gh-actions-lua@v9
with:
luaVersion: "5.1.5"
- uses: leafo/gh-actions-luarocks@v4
- name: Download nvim-test
run: make nvim-test
- name: Run Test
run: make test