Skip to content

Workflow file for this run

name: Nightly Neovim check
# Checks LSP and unit tests against new Neovim nightly once a week
on:
# schedule:
# - cron: '30 21 * * 0' # 6:30 AM JST, Monday
# workflow_dispatch:
push:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
tests:
uses: ./.github/workflows/tests.yml
with:
matrix: |
[
{"rev": "nightly/nvim-linux64.tar.gz"}
]
lua-language-server:
uses: ./.github/workflows/lua_language_server.yml
with:
matrix: |
[
{"type_version": "nightly", "rev": "nightly/nvim-linux64.tar.gz"}
]