Skip to content

Commit

Permalink
Try installing the rust language server
Browse files Browse the repository at this point in the history
  • Loading branch information
yegappan committed Feb 9, 2024
1 parent 500947f commit 33c5c71
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/unitests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,13 @@ jobs:
sudo apt install -y curl
curl -fsSL https://deb.nodesource.com/setup_18.x | sudo bash -
sudo apt install -y nodejs
# install typescript language server
# install the typescript language server
sudo npm install -g typescript-language-server typescript
# install golang language server
# install the golang language server
sudo apt install -y golang
sudo apt install -y gopls
# install the rust language server
sudo rustup component add rust-analyzer
- name: Setup Vim
uses: rhysd/action-setup-vim@v1
id: vim
Expand All @@ -34,6 +36,7 @@ jobs:
- name: Run Tests
run: |
uname -a
rust-analyzer --version
export VIMPRG=${{ steps.vim.outputs.executable }}
$VIMPRG --version
cd test
Expand Down

0 comments on commit 33c5c71

Please sign in to comment.