We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60fc176 commit 817d251Copy full SHA for 817d251
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,26 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
8
9
+jobs:
10
+ test:
11
+ runs-on: ubuntu-latest
12
+ strategy:
13
+ fail-fast: false
14
+ matrix:
15
+ neovim: [stable, nightly]
16
+ name: Test (Neovim ${{ matrix.neovim }})
17
+ steps:
18
+ - uses: actions/checkout@v4
19
20
+ - uses: rhysd/action-setup-vim@v1
21
+ with:
22
+ neovim: true
23
+ version: ${{ matrix.neovim }}
24
25
+ - name: Run tests
26
+ run: make test
0 commit comments