This repository was archived by the owner on Mar 14, 2025. It is now read-only.
Archiving vim-dotoo #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
concurrency: | |
group: ${{ github.workflow }} | |
cancel-in-progress: true | |
jobs: | |
tests: | |
name: Vim Dotoo Tests | |
strategy: | |
fail-fast: true | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
path: pack/plugins/start/vim-dotoo | |
- name: Checkout vim-testify | |
uses: actions/checkout@v3 | |
with: | |
repository: dhruvasagar/vim-testify | |
path: pack/plugins/start/vim-testify | |
- name: Install Vim or neovim | |
uses: rhysd/action-setup-vim@v1 | |
id: vim | |
with: | |
neovim: true | |
version: nightly | |
- name: Run unit tests | |
env: | |
VIM: ${{ steps.vim.outputs.executable }} | |
run: | | |
cd ${{ github.workspace }}/pack/plugins/start/vim-dotoo | |
echo "set packpath+=${{ github.workspace }}" > vimrc | |
${VIM} --headless -u vimrc +"set hidden" +TestifySuite +qall |