Skip to content

Add multiple language server association with syntax elements #1201

Add multiple language server association with syntax elements

Add multiple language server association with syntax elements #1201

Workflow file for this run

name: unit-tests
on: [push, pull_request]
jobs:
linux:
name: linux
runs-on: ubuntu-22.04
strategy:
matrix:
vim:
- nightly
- v9.0.0000
steps:
- name: Install packages
run: |
sudo apt-get update
# install clangd language server
sudo apt-get install -y clangd-15
# install nodejs
sudo apt-get install -y curl
curl -fsSL https://deb.nodesource.com/setup_18.x | sudo bash -
sudo apt-get install -y nodejs
# install the typescript language server
sudo npm install -g typescript-language-server typescript
# install the golang language server
sudo apt-get install -y golang
sudo apt-get install -y gopls
# install the rust language server
sudo apt-get install -y cargo rust-src
mkdir -p ~/.local/bin
curl -L https://github.com/rust-lang/rust-analyzer/releases/latest/download/rust-analyzer-x86_64-unknown-linux-gnu.gz | gunzip -c - > ~/.local/bin/rust-analyzer
chmod +x ~/.local/bin/rust-analyzer
- name: Setup Vim
uses: rhysd/action-setup-vim@v1
id: vim
with:
version: ${{ matrix.vim }}
- name: Checkout LSP plugin Code
uses: actions/checkout@v4
- name: Prepare Tests
run: |
# install deps for the dummy lsp
cd ./test/dummy-lsp/
npm install
cd -
- name: Run Tests
run: |
uname -a
~/.local/bin/rust-analyzer --version
export VIMPRG=${{ steps.vim.outputs.executable }}
$VIMPRG --version
cd test
./run_tests.sh