diff options
| author | Stephan Seitz <stephan.seitz@fau.de> | 2021-03-08 12:58:05 +0100 |
|---|---|---|
| committer | Kiyan <yazdani.kiyan@protonmail.com> | 2021-03-16 18:52:43 +0100 |
| commit | 92bc601c505fa465069ece7a6dae2a3fe649e5e3 (patch) | |
| tree | 234668f141cd55f2d0e48c1bbc4b7b17aef94c84 /.github/workflows | |
| parent | Add explanation why some parsers need to be generated from source now (diff) | |
| download | nvim-treesitter-92bc601c505fa465069ece7a6dae2a3fe649e5e3.tar nvim-treesitter-92bc601c505fa465069ece7a6dae2a3fe649e5e3.tar.gz nvim-treesitter-92bc601c505fa465069ece7a6dae2a3fe649e5e3.tar.bz2 nvim-treesitter-92bc601c505fa465069ece7a6dae2a3fe649e5e3.tar.lz nvim-treesitter-92bc601c505fa465069ece7a6dae2a3fe649e5e3.tar.xz nvim-treesitter-92bc601c505fa465069ece7a6dae2a3fe649e5e3.tar.zst nvim-treesitter-92bc601c505fa465069ece7a6dae2a3fe649e5e3.zip | |
Check query files on all OSes
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/test.yml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index da5fcab33..3c4808bb1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -36,6 +36,10 @@ jobs: run: | nvim --headless -c "TSInstallSync all" -c "q" + - name: Check query files (Unix) + if: matrix.os != 'windows-latest' + run: ./nvim.appimage --headless -c "luafile ./scripts/check-queries.lua" -c "q" + - name: Compile parsers Windows if: matrix.os == 'windows-latest' run: | @@ -46,6 +50,10 @@ jobs: run: cp -r ~/AppData/Local/nvim/pack/nvim-treesitter/start/nvim-treesitter/parser/* parser shell: bash + - name: Check query files (Windows) + if: matrix.os != 'windows-latest' + run: ./nvim.appimage --headless -c "luafile ./scripts/check-queries.lua" -c "q" + - uses: actions/upload-artifact@v2 with: name: parsers-${{ matrix.os }}-${{ matrix.cc }}-x86_64 |
