Skip to content

Commit d66a98b

Browse files
committed
add GitHub Actions workflow for running tests
1 parent a81537b commit d66a98b

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

.github/workflows/test.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Test
2+
on: [push, pull_request]
3+
jobs:
4+
test:
5+
runs-on: ubuntu-latest
6+
strategy:
7+
matrix:
8+
vim:
9+
- v9.1.0
10+
- nightly
11+
steps:
12+
- uses: actions/checkout@v4
13+
- name: Setup Vim
14+
uses: thinca/action-setup-vim@v2
15+
with:
16+
vim_version: ${{ matrix.vim }}
17+
- name: Clone vim-themis
18+
run: git clone --depth 1 https://github.com/thinca/vim-themis.git ../vim-themis
19+
- name: Run tests
20+
run: ../vim-themis/bin/themis test/

0 commit comments

Comments
 (0)