Fix tests, remove vim & windows

This commit is contained in:
Dhruva Sagar
2023-10-24 12:35:12 +05:30
parent e66a13b7ed
commit 0a132f8377

View File

@@ -21,8 +21,7 @@ jobs:
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
os: [ubuntu-latest, macos-latest, windows-latest] os: [ubuntu-latest, macos-latest]
neovim: [false, true]
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
@@ -39,7 +38,7 @@ jobs:
uses: rhysd/action-setup-vim@v1 uses: rhysd/action-setup-vim@v1
id: vim id: vim
with: with:
neovim: ${{ matrix.neovim }} neovim: true
version: nightly version: nightly
- name: Run unit tests - name: Run unit tests
@@ -48,5 +47,4 @@ jobs:
run: | run: |
cd ${{ github.workspace }}/pack/plugins/start/vim-table-mode cd ${{ github.workspace }}/pack/plugins/start/vim-table-mode
echo "set packpath+=${{ github.workspace }}" > vimrc echo "set packpath+=${{ github.workspace }}" > vimrc
${VIM} -u vimrc +TestifySuite +qall ${VIM} --headless -u vimrc +TestifySuite +qall
cat testify_results.txt