forked from nvim-neorg/neorg
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(dirman): use pathlib for all dirman operations (nvim-neorg#1354)
- Loading branch information
Showing
20 changed files
with
162 additions
and
135 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 |
---|---|---|
|
@@ -30,3 +30,4 @@ jobs: | |
lua-utils.nvim == 1.0.2 | ||
plenary.nvim == 0.1.4 | ||
nui.nvim == 0.3.0 | ||
pathlib.nvim ~> 2 |
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,18 +14,26 @@ jobs: | |
- name: Checkout Code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Checkout dependency neodev | ||
- name: Checkout dependency neodev # get neodev and neovim/runtime for builtin types | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: "folke/neodev.nvim" | ||
path: "deps/neodev.nvim" | ||
|
||
- name: Checkout neovim for type annotations | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: "neovim/neovim" | ||
path: "deps/neovim" | ||
|
||
- uses: leafo/gh-actions-lua@v9 # get luarocks dependencies for their types (eg `PathlibPath`) | ||
with: | ||
luaVersion: "5.1" | ||
- uses: leafo/gh-actions-luarocks@v4 | ||
- name: install dependencies | ||
run: | | ||
luarocks init | ||
luarocks install --only-deps ./*.rockspec | ||
- name: Type Check Code Base | ||
uses: mrcjkb/[email protected] | ||
with: | ||
|
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 |
---|---|---|
@@ -1,2 +1,5 @@ | ||
wiki/ | ||
test.norg | ||
/luarocks | ||
/lua_modules | ||
/.luarocks |
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
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
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
Oops, something went wrong.