-
Notifications
You must be signed in to change notification settings - Fork 3
44 lines (39 loc) · 1005 Bytes
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
jobs:
tests:
name: Testify Tests
continue-on-error: true
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
neovim: [false, true]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
with:
path: pack/plugins/start/vim-testify
- name: Install Vim or neovim
uses: rhysd/action-setup-vim@v1
id: vim
with:
neovim: ${{ matrix.neovim }}
version: nightly
- name: Run unit tests
env:
VIM: ${{ steps.vim.outputs.executable }}
run: |
cd ${{ github.workspace }}/pack/plugins/start/vim-testify
echo "set packpath+=${{ github.workspace }}" > vimrc
${VIM} -u vimrc +TestifySuite +qall
cat testify_results.txt