Skip to content

Switching to Github Actions #2

Switching to Github Actions

Switching to Github Actions #2

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
jobs:
tests:
name: Testify Tests
strategy:
fail-fast: true
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: |
${VIM} +TestifySuite +qall
cat testify_results.txt