fix(#2415): nvim 0.8 highlight overhaul support, limited to only show highest highlight precedence #2507
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: CI | |
on: | |
pull_request: | |
branches: | |
- '*' | |
push: | |
branches: | |
- master | |
- release-please--branches--master--components--nvim-tree | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
lua_version: [ 5.1 ] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: leafo/gh-actions-lua@v10 | |
with: | |
luaVersion: ${{ matrix.lua_version }} | |
- uses: leafo/gh-actions-luarocks@v4 | |
- run: luarocks install luacheck 1.1.1 | |
- run: make lint | |
style: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
stylua_version: [ 0.19.1 ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: stylua | |
uses: JohnnyMorganz/stylua-action@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
version: ${{ matrix.stylua_version }} | |
args: --check lua | |
- run: make style-doc | |
check: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
nvim_version: [ v0.9.4 ] | |
luals_version: [ 3.7.3 ] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: rhysd/action-setup-vim@v1 | |
with: | |
neovim: true | |
version: ${{ matrix.nvim_version }} | |
- name: install luals | |
run: | | |
mkdir -p luals | |
curl -L "https://github.com/LuaLS/lua-language-server/releases/download/${{ matrix.luals_version }}/lua-language-server-${{ matrix.luals_version }}-linux-x64.tar.gz" | tar zx --directory luals | |
- name: make check | |
run: VIMRUNTIME=/home/runner/nvim-${{ matrix.nvim_version }}/share/nvim/runtime PATH="luals/bin:${PATH}" make check | |
- run: make help-check |