Skip to content

Commit 5338825

Browse files
Use a fixed neovim version (#2794)
CI is broken for latest neovim version Related #2793 ## Checklist - [ ] I have added [tests](https://www.cursorless.org/docs/contributing/test-case-recorder/) - [ ] I have updated the [docs](https://github.com/cursorless-dev/cursorless/tree/main/docs) and [cheatsheet](https://github.com/cursorless-dev/cursorless/tree/main/cursorless-talon/src/cheatsheet) - [ ] I have not broken the cheatsheet
1 parent 3266cc7 commit 5338825

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ jobs:
2424
runs-on: ${{ matrix.os }}
2525
env:
2626
APP_VERSION: ${{ matrix.app_version }}
27-
NEOVIM_VERSION: ${{ matrix.app_version == 'stable' && 'stable' || 'v0.10.0' }}
27+
# FIXME: https://github.com/cursorless-dev/cursorless/issues/2793
28+
# NEOVIM_VERSION: ${{ matrix.app_version == 'stable' && 'stable' || 'v0.10.0' }}
29+
NEOVIM_VERSION: ${{ matrix.app_version == 'stable' && 'v0.10.3' || 'v0.10.0' }}
2830
VSCODE_CRASH_DIR: ${{ github.workspace }}/artifacts/dumps
2931
VSCODE_LOGS_DIR: ${{ github.workspace }}/artifacts/logs
3032
CURSORLESS_REPO_ROOT: ${{ github.workspace }}

0 commit comments

Comments
 (0)