Skip installation checks for clangd server if it has already been set up locally. #859
Workflow file for this run
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 | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
version: [stable, nightly] | |
vim_type: ['Vim', 'Neovim'] | |
include: | |
- vim_type: 'Vim' | |
neovim: false | |
- vim_type: 'Neovim' | |
neovim: true | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- id: vim | |
uses: rhysd/action-setup-vim@v1 | |
with: | |
version: ${{ matrix.version }} | |
neovim: ${{ matrix.neovim }} | |
- name: 'Setup vim-themis' | |
uses: actions/checkout@v4 | |
with: | |
repository: thinca/vim-themis | |
path: vim-themis | |
- name: Run tests | |
env: | |
THEMIS_VIM: ${{ steps.vim.outputs.executable }} | |
run: | | |
./vim-themis/bin/themis ./test |