We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a81537b commit d66a98bCopy full SHA for d66a98b
1 file changed
.github/workflows/test.yml
@@ -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