Skip to content

Commit

Permalink
ci: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lewis6991 committed Jul 2, 2024
1 parent 8f408ec commit 1ba826c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 15 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:

env:
NEOVIM_VERSION: ${{ matrix.neovim_version }}
IS_CI: 1

steps:
- name: Checkout
Expand Down
15 changes: 0 additions & 15 deletions test/preload.lua

This file was deleted.

5 changes: 5 additions & 0 deletions test/ts_context_spec.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ local cmd = helpers.api.nvim_command
local feed = helpers.feed

local function install_langs(langs)
-- Shouldn't need to do this, but CI seems to hang on some languages
if os.getenv('IS_CI') then
return
end

if type(langs) == 'string' then
langs = {langs}
end
Expand Down

0 comments on commit 1ba826c

Please sign in to comment.