Skip to content

Commit

Permalink
Update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
dcampos committed Nov 22, 2022
1 parent e12f018 commit ecb2561
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ jobs:
- name: Set current date
id: vars
run: |
echo "::set-output name=current_date::$(date +'%Y-%m-%d')"
echo "{current_date}={$(date +'%Y-%m-%d')}" >> $GITHUB_OUTPUT
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- uses: actions/cache@v2
- uses: actions/cache@v3
id: cache
with:
path: neovim
Expand All @@ -36,7 +36,7 @@ jobs:
sudo apt-get install -y autoconf automake build-essential cmake gcc-11 gettext gperf libtool-bin locales ninja-build pkg-config unzip
- name: Setup lua
uses: leafo/gh-actions-lua@v8
uses: leafo/gh-actions-lua@v9
with:
luaVersion: "luajit"

Expand Down
4 changes: 3 additions & 1 deletion test/functional/preload.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@
local global_helpers = require('test.helpers')

-- Bypass CI behaviour logic
global_helpers.isCI = function(_)
global_helpers.is_ci = function(_)
return false
end

global_helpers.isCI = global_helpers.is_ci

local helpers = require('test.functional.helpers')(nil)

0 comments on commit ecb2561

Please sign in to comment.