mirror of
https://github.com/nvim-tree/nvim-tree.lua.git
synced 2026-07-28 15:59:44 +05:30
Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
101 lines
2.9 KiB
YAML
101 lines
2.9 KiB
YAML
name: CI
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches: [master]
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '0 0 * * 0' # weekly on sundays
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ matrix.lua_version }}-${{ github.head_ref || github.ref_name }}
|
|
cancel-in-progress: true
|
|
|
|
strategy:
|
|
matrix:
|
|
lua_version: [ 5.1 ]
|
|
luacheck_version: [ 1.2.0 ]
|
|
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@v7
|
|
|
|
- name: install lua ${{ matrix.lua_version }}
|
|
uses: leafo/gh-actions-lua@v13
|
|
with:
|
|
luaVersion: ${{ matrix.lua_version }}
|
|
|
|
- name: install luarocks
|
|
uses: leafo/gh-actions-luarocks@v6
|
|
|
|
- name: install luacheck ${{ matrix.luacheck_version }}
|
|
run: luarocks install luacheck ${{ matrix.luacheck_version }}
|
|
|
|
- run: make lint
|
|
|
|
check:
|
|
runs-on: ubuntu-latest
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ matrix.nvim_version }}-${{ matrix.luals_version }}-${{ matrix.emmyluacodestyle_version }}-${{ github.head_ref || github.ref_name }}
|
|
cancel-in-progress: true
|
|
|
|
strategy:
|
|
matrix:
|
|
nvim_version: [ stable, nightly ]
|
|
luals_version: [ 3.15.0 ]
|
|
emmyluacodestyle_version: [ 1.6.0 ]
|
|
|
|
env:
|
|
VIMRUNTIME: /home/runner/nvim-${{ matrix.nvim_version }}/share/nvim/runtime
|
|
DIR_NVIM_SRC: /home/runner/src/neovim-${{ matrix.nvim_version }}
|
|
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@v7
|
|
|
|
- name: install nvim ${{ matrix.nvim_version }}
|
|
uses: rhysd/action-setup-vim@v1
|
|
with:
|
|
neovim: true
|
|
version: ${{ matrix.nvim_version }}
|
|
|
|
- name: install lua-language-server ${{ matrix.luals_version }}
|
|
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
|
|
echo "luals/bin" >> "$GITHUB_PATH"
|
|
|
|
- name: install EmmyLuaCodeStyle ${{ matrix.emmyluacodestyle_version }}
|
|
run: |
|
|
mkdir -p EmmyLuaCodeStyle
|
|
curl -L "https://github.com/CppCXY/EmmyLuaCodeStyle/releases/download/${{ matrix.emmyluacodestyle_version }}/linux-x64.tar.gz" | tar zx --directory EmmyLuaCodeStyle
|
|
echo "EmmyLuaCodeStyle/linux-x64/bin" >> "$GITHUB_PATH"
|
|
|
|
- run: make check
|
|
|
|
- run: make style
|
|
|
|
- run: make style-doc
|
|
|
|
- run: make format-check
|
|
|
|
- name: build Nvim from source
|
|
if: ${{ matrix.nvim_version == 'stable' }}
|
|
run: |
|
|
mkdir -p "${DIR_NVIM_SRC}"
|
|
curl -L "https://github.com/neovim/neovim/archive/refs/tags/${{ matrix.nvim_version }}.tar.gz" | tar zx --directory "${DIR_NVIM_SRC}/.."
|
|
cd "${DIR_NVIM_SRC}"
|
|
make doc
|
|
|
|
- run: make help-check
|
|
if: ${{ matrix.nvim_version == 'stable' }}
|