Skip to content

Commit 0737822

Browse files
committed
proper health check location
Signed-off-by: Ben McNicholl <git@benmcnicholl.com>
1 parent 9a3b76a commit 0737822

2 files changed

Lines changed: 11 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
5252
- name: Test health check
5353
run: |
54-
nvim --headless -c "lua require('buildkite.health').check()" -c "qa!"
54+
nvim --headless -c "lua require('health.buildkite').check()" -c "qa!"
5555
5656
lint:
5757
runs-on: ubuntu-latest

lua/health/buildkite.lua

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
-- Health check for buildkite.nvim
2+
local M = {}
3+
4+
-- Re-export the check function from buildkite.health
5+
function M.check()
6+
-- Forward to the existing health check implementation
7+
require('buildkite.health').check()
8+
end
9+
10+
return M

0 commit comments

Comments
 (0)