Skip to content

Commit

Permalink
fix(tests): temporarily disable neovim tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kkoomen committed Oct 30, 2020
1 parent 3c963e9 commit 4a4e74d
Showing 1 changed file with 45 additions and 45 deletions.
90 changes: 45 additions & 45 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,51 +54,51 @@ jobs:
run: ./scripts/run-vader-tests.sh "${{ steps.vim.outputs.executable }}"
shell: bash

tests_neovim:
name: NeoVim
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
vim-version: [v0.3.2, head]
node-version: [10, 12, 14]
include:
- os: macos-latest
target: macos
- os: ubuntu-latest
target: linux
- os: windows-latest
target: win
runs-on: ${{ matrix.os }}
steps:
- name: Checkout kkoomen/vim-doge
uses: actions/checkout@v2
with:
submodules: true
- name: Checkout junegunn/vader.vim
uses: actions/checkout@v2
with:
repository: junegunn/vader.vim
path: vader
- name: Setup nodejs
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci --no-save
- name: Build Unix binary
if: matrix.target != 'win'
run: npm run build:binary -- node${{ matrix.node-version }}-${{ matrix.target }}-x64
- name: Build Windows binary
if: matrix.target == 'win'
run: npm run build:binary:windows -- node${{ matrix.node-version }}-${{ matrix.target }}-x64
- name: Setup neovim
uses: thinca/action-setup-vim@v1
id: vim
with:
vim_version: ${{ matrix.vim-version }}
vim_type: neovim
- name: Run tests
run: ./scripts/run-vader-tests.sh "${{ steps.vim.outputs.executable }}"
shell: bash
# tests_neovim:
# name: NeoVim
# strategy:
# matrix:
# os: [macos-latest, ubuntu-latest, windows-latest]
# vim-version: [v0.3.2, head]
# node-version: [10, 12, 14]
# include:
# - os: macos-latest
# target: macos
# - os: ubuntu-latest
# target: linux
# - os: windows-latest
# target: win
# runs-on: ${{ matrix.os }}
# steps:
# - name: Checkout kkoomen/vim-doge
# uses: actions/checkout@v2
# with:
# submodules: true
# - name: Checkout junegunn/vader.vim
# uses: actions/checkout@v2
# with:
# repository: junegunn/vader.vim
# path: vader
# - name: Setup nodejs
# uses: actions/setup-node@v1
# with:
# node-version: ${{ matrix.node-version }}
# - run: npm ci --no-save
# - name: Build Unix binary
# if: matrix.target != 'win'
# run: npm run build:binary -- node${{ matrix.node-version }}-${{ matrix.target }}-x64
# - name: Build Windows binary
# if: matrix.target == 'win'
# run: npm run build:binary:windows -- node${{ matrix.node-version }}-${{ matrix.target }}-x64
# - name: Setup neovim
# uses: thinca/action-setup-vim@v1
# id: vim
# with:
# vim_version: ${{ matrix.vim-version }}
# vim_type: neovim
# - name: Run tests
# run: ./scripts/run-vader-tests.sh "${{ steps.vim.outputs.executable }}"
# shell: bash

vint:
name: Linter
Expand Down

0 comments on commit 4a4e74d

Please sign in to comment.