We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3e36d3c + cf89d75 commit 8a3aa77Copy full SHA for 8a3aa77
1 file changed
.github/workflows/startup_check.yaml
@@ -0,0 +1,28 @@
1
+name: Neovim Startup Check
2
+
3
+on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
8
+jobs:
9
+ check-nvim-startup:
10
+ runs-on: ubuntu-latest
11
12
+ steps:
13
+ - name: Checkout repo
14
+ uses: actions/checkout@v4
15
16
+ - name: Install Neovim (0.11.2 currently used.)
17
+ uses: rhysd/action-setup-vim@v1
18
+ with:
19
+ neovim: true
20
+ version: v0.11.2
21
22
+ - name: Show Neovim version
23
+ run: nvim --version
24
25
+ - name: Run Neovim to check for startup errors
26
+ run: |
27
+ nvim --headless +"qa"
28
0 commit comments