diff options
| author | Searidang Pa <dangsyncpa@gmail.com> | 2026-01-09 17:02:09 -0500 |
|---|---|---|
| committer | Searidang Pa <dangsyncpa@gmail.com> | 2026-01-09 17:02:09 -0500 |
| commit | ec28aeca307da38fd7888bb0bce077e75da80b79 (patch) | |
| tree | e635b35ca079ff663d4adb333a6062801238d9a6 /.github | |
| parent | 91ea4cfd4a46d756152e9470abe495f4b178e818 (diff) | |
| download | a4-ec28aeca307da38fd7888bb0bce077e75da80b79.tar.xz a4-ec28aeca307da38fd7888bb0bce077e75da80b79.zip | |
pin nvim-treesitter in CI
CI now installs a fixed nvim-treesitter commit and minimal tests only require a small parser set, failing fast with a helpful error if parsers are missing.
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/makefile.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/makefile.yml b/.github/workflows/makefile.yml index 9d2b733..f7dc5fc 100644 --- a/.github/workflows/makefile.yml +++ b/.github/workflows/makefile.yml @@ -40,5 +40,10 @@ jobs: run: | git clone https://github.com/nvim-lua/plenary.nvim.git ../plenary.nvim + - name: Install nvim-treesitter (pinned) + run: | + git clone https://github.com/nvim-treesitter/nvim-treesitter.git ../nvim-treesitter + git -C ../nvim-treesitter checkout 2ba5ec184609a96b513bf4c53a20512d64e27f39 + - name: Run pr_ready run: make pr_ready |
