aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/check-query-files-and-compilation.yml7
1 files changed, 7 insertions, 0 deletions
diff --git a/.github/workflows/check-query-files-and-compilation.yml b/.github/workflows/check-query-files-and-compilation.yml
index ed8fa1705..259f7d2ab 100644
--- a/.github/workflows/check-query-files-and-compilation.yml
+++ b/.github/workflows/check-query-files-and-compilation.yml
@@ -84,7 +84,14 @@ jobs:
run: cp -r ~/AppData/Local/nvim/pack/nvim-treesitter/start/nvim-treesitter/parser/* parser
shell: bash
+ # NOTE: this is a temporary workaround to skip swift tests on ubuntu
+ # stable and should be removed once neovim 0.7 is released.
+ - if: matrix.os == 'ubuntu-latest' && matrix.nvim_tag == 'stable'
+ run: echo "SKIP_SWIFT_CHECK=TRUE" >> $GITHUB_ENV
+
- name: Check query files (Unix)
+ env:
+ SKIP_SWIFT_CHECK: ${{ env.SKIP_SWIFT_CHECK }}
if: matrix.os != 'windows-2022'
run: nvim --headless -c "luafile ./scripts/check-queries.lua" -c "q"