diff options
| author | Kiyoon Kim <yoonkr33@gmail.com> | 2023-02-14 17:16:33 +0000 |
|---|---|---|
| committer | Stephan Seitz <stephan.seitz@fau.de> | 2023-02-15 03:23:38 -0800 |
| commit | b44871afb59e456bbff4113e416405c06c991cf5 (patch) | |
| tree | 04113f85280760d6ddddd2c6f065f75992c0945e /.github/workflows/test-queries.yml | |
| parent | docs(readme): remove ambiguous comment (#4321) (diff) | |
| download | nvim-treesitter-b44871afb59e456bbff4113e416405c06c991cf5.tar nvim-treesitter-b44871afb59e456bbff4113e416405c06c991cf5.tar.gz nvim-treesitter-b44871afb59e456bbff4113e416405c06c991cf5.tar.bz2 nvim-treesitter-b44871afb59e456bbff4113e416405c06c991cf5.tar.lz nvim-treesitter-b44871afb59e456bbff4113e416405c06c991cf5.tar.xz nvim-treesitter-b44871afb59e456bbff4113e416405c06c991cf5.tar.zst nvim-treesitter-b44871afb59e456bbff4113e416405c06c991cf5.zip | |
Add treesitter CLI in CI with Windows and mac
Diffstat (limited to '.github/workflows/test-queries.yml')
| -rw-r--r-- | .github/workflows/test-queries.yml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.github/workflows/test-queries.yml b/.github/workflows/test-queries.yml index 8545965b1..5c9786536 100644 --- a/.github/workflows/test-queries.yml +++ b/.github/workflows/test-queries.yml @@ -24,8 +24,8 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, windows-2022, macos-latest] - cc: [ gcc, clang ] - nvim_tag: [ stable ] + cc: [gcc, clang] + nvim_tag: [stable] exclude: - os: ubuntu-latest cc: clang @@ -59,10 +59,12 @@ jobs: - uses: ilammy/msvc-dev-cmd@v1 - uses: actions/setup-node@v3 + - name: Install tree-sitter CLI + run: npm i -g tree-sitter-cli + - name: Install and prepare Neovim env: NVIM_TAG: ${{ matrix.nvim_tag }} - TREE_SITTER_CLI_TAG: v0.20.6 run: | bash ./scripts/ci-install-${{ matrix.os }}.sh |
