Skip to content

Commit 817d251

Browse files
authored
ci: add GitHub Actions workflow for tests (#15)
1 parent 60fc176 commit 817d251

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
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

Comments
 (0)