diff options
| author | Stephan Seitz <stephan.seitz@fau.de> | 2021-11-24 22:37:52 +0100 |
|---|---|---|
| committer | Stephan Seitz <stephan.seitz@fau.de> | 2021-11-30 20:46:35 +0100 |
| commit | ec276ed4607f74b5de68c8c3fc6ec0c378b6a15e (patch) | |
| tree | f5f8fcba507ed62fefe6d64fc087d1b00b4d3145 /.github/workflows | |
| parent | don't treat *.fs as glsl files as it collides with fsharp (diff) | |
| download | nvim-treesitter-ec276ed4607f74b5de68c8c3fc6ec0c378b6a15e.tar nvim-treesitter-ec276ed4607f74b5de68c8c3fc6ec0c378b6a15e.tar.gz nvim-treesitter-ec276ed4607f74b5de68c8c3fc6ec0c378b6a15e.tar.bz2 nvim-treesitter-ec276ed4607f74b5de68c8c3fc6ec0c378b6a15e.tar.lz nvim-treesitter-ec276ed4607f74b5de68c8c3fc6ec0c378b6a15e.tar.xz nvim-treesitter-ec276ed4607f74b5de68c8c3fc6ec0c378b6a15e.tar.zst nvim-treesitter-ec276ed4607f74b5de68c8c3fc6ec0c378b6a15e.zip | |
ci: add nightly again to CI
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/check-query-files-and-compilation.yml | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/.github/workflows/check-query-files-and-compilation.yml b/.github/workflows/check-query-files-and-compilation.yml index df7e54477..d96941d35 100644 --- a/.github/workflows/check-query-files-and-compilation.yml +++ b/.github/workflows/check-query-files-and-compilation.yml @@ -9,16 +9,24 @@ jobs: matrix: os: [ubuntu-latest, windows-2022, macos-latest] cc: [ gcc, clang ] + nvim_tag: [ v0.5.1 ] exclude: - os: macos-latest cc: gcc + nvim_tag: v0.5.1 include: - os: windows-2022 cc: cl + nvim_tag: v0.5.1 - os: macos-latest cc: gcc-10 + nvim_tag: v0.5.1 + + - os: ubuntu-latest + cc: gcc + nvim_tag: nightly name: Parser compilation runs-on: ${{ matrix.os }} @@ -31,8 +39,8 @@ jobs: - name: Install and prepare Neovim env: - NVIM_TAG: v0.5.1 - TREE_SITTER_CLI_TAG: v0.20.0 + NVIM_TAG: ${{ matrix.nvim_tag }} + TREE_SITTER_CLI_TAG: v0.20.1 run: | bash ./scripts/ci-install-${{ matrix.os }}.sh |
