GH: install gopls before tests

This commit is contained in:
Michael Panchenko
2025-04-28 15:50:12 +02:00
parent 7293478fa5
commit 3de5da6047
+8 -2
View File
@@ -16,8 +16,14 @@ jobs:
with:
python-version: "${{ matrix.python-version }}"
# Include the appropriate package manager steps based on the selection
# Add Go bin directory to PATH for this workflow
# GITHUB_PATH is a special file that GitHub Actions uses to modify PATH
# Writing to this file adds the directory to the PATH for subsequent steps
- name: Install gopls
run: |
go install golang.org/x/tools/gopls@latest
echo "$HOME/go/bin" >> $GITHUB_PATH
- name: Install uv
run: curl -LsSf https://astral.sh/uv/install.sh | sh
- name: Create virtual environment