Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,15 @@ jobs:
uses: actions/checkout@v3
with:
repository: folke/neodev.nvim.git
path: /home/runner/.config/.haxe/nvim-api
path: neodev
ref: main
- name: install neovim
uses: MunifTanjim/setup-neovim-action@v1
with:
tag: stable
- name: Generate API
run: |
haxe build-api.hxml
haxe build-api.hxml --path /home/runner/work/haxe-nvim/haxe-nvim/neodev
- name: Run test that should fail
run: |
./run-fail-test.sh
Expand All @@ -43,6 +48,7 @@ jobs:
with:
files: |
lua/danielo_nvim
res/
- name: Fail if there are changed files (should not be the case)
if: steps.changedfiles.outputs.files_changed == 'true'
run: |
Expand Down
4 changes: 1 addition & 3 deletions build-api.hxml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,4 @@ libs.hxml
-D analyzer-optimize

-cp tools
-main tools.ReadNvimApi

--interp
--run tools.ReadNvimApi
Loading