We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a3b76a commit 0737822Copy full SHA for 0737822
2 files changed
.github/workflows/ci.yml
@@ -51,7 +51,7 @@ jobs:
51
52
- name: Test health check
53
run: |
54
- nvim --headless -c "lua require('buildkite.health').check()" -c "qa!"
+ nvim --headless -c "lua require('health.buildkite').check()" -c "qa!"
55
56
lint:
57
runs-on: ubuntu-latest
lua/health/buildkite.lua
@@ -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