-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
perf(data source): support 'LspProgress' event in v0.10 (#109)
docs(install): update installation and integration
- Loading branch information
1 parent
509b17f
commit 2032169
Showing
10 changed files
with
233 additions
and
224 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,8 +14,7 @@ jobs: | |
if: ${{ github.ref != 'refs/heads/main' }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- uses: actions/checkout@v4 | ||
# - uses: webiny/[email protected] | ||
- uses: ytanikin/[email protected] | ||
with: | ||
|
@@ -24,28 +23,23 @@ jobs: | |
name: Lua check | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: LuaLs typecheck | ||
uses: stevearc/nvim-typecheck-action@v1 | ||
- uses: actions/checkout@v4 | ||
- uses: stevearc/nvim-typecheck-action@v1 | ||
with: | ||
path: lua | ||
level: Information | ||
configpath: ".luarc.json" | ||
neodev-version: stable | ||
- name: Luacheck | ||
uses: lunarmodules/luacheck@v1 | ||
- uses: lunarmodules/luacheck@v1 | ||
with: | ||
args: lua --config .luacheckrc | ||
- name: Stylua | ||
uses: JohnnyMorganz/stylua-action@v3 | ||
- uses: JohnnyMorganz/stylua-action@v3 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
version: latest | ||
args: --config-path .stylua.toml lua/ test/ | ||
- name: Auto Commit | ||
- uses: stefanzweifel/git-auto-commit-action@v4 | ||
if: ${{ github.ref != 'refs/heads/main' }} | ||
uses: stefanzweifel/git-auto-commit-action@v4 | ||
with: | ||
commit_message: "chore(pr): auto-commit" | ||
unit_test: | ||
|
@@ -55,20 +49,16 @@ jobs: | |
nvim_version: [stable, nightly, v0.6.0] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Install neovim | ||
uses: rhysd/action-setup-vim@v1 | ||
- uses: actions/checkout@v4 | ||
- uses: rhysd/action-setup-vim@v1 | ||
id: vim | ||
with: | ||
neovim: true | ||
version: ${{ matrix.nvim_version }} | ||
- name: Install luajit | ||
uses: leafo/gh-actions-lua@v10 | ||
- uses: leafo/gh-actions-lua@v10 | ||
with: | ||
luaVersion: "luajit-2.1.0-beta3" | ||
- name: Install luarocks | ||
uses: leafo/gh-actions-luarocks@v4 | ||
- uses: leafo/gh-actions-luarocks@v4 | ||
- name: Run test cases | ||
shell: bash | ||
run: | | ||
|
@@ -88,8 +78,7 @@ jobs: | |
ls -l . | ||
echo "cat ./luacov.report.out" | ||
cat ./luacov.report.out | ||
- name: Upload coverage reports to Codecov | ||
uses: codecov/codecov-action@v3 | ||
- uses: codecov/codecov-action@v3 | ||
with: | ||
files: luacov.report.out | ||
env: | ||
|
@@ -122,7 +111,6 @@ jobs: | |
LUAROCKS_API_KEY: ${{ secrets.LUAROCKS_API_KEY }} | ||
with: | ||
version: ${{ steps.release.outputs.tag_name }} | ||
summary: "A performant lsp progress status for Neovim." | ||
labels: | | ||
vim | ||
neovim |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
vim.opt.tabstop = 2 | ||
vim.opt.softtabstop = 2 | ||
vim.opt.shiftwidth = 2 |
Oops, something went wrong.