Skip to content

Commit 8a3aa77

Browse files
authored
Add Dry Run Action (#7)
2 parents 3e36d3c + cf89d75 commit 8a3aa77

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)