Nightly Neovim Check #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
tests: | |
uses: ./.github/workflows/tests.yml | |
with: | |
neovim_versions: | | |
[ "nightly" ] | |
lua-language-server: | |
uses: ./.github/workflows/lua_language_server.yml | |
with: | |
lua_ls_version: 3.9.1 | |
neovim_versions: | | |
[ "nightly" ] |