We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6706d7 commit 7576eedCopy full SHA for 7576eed
.github/workflows/copilot-setup-steps.yml
@@ -12,21 +12,26 @@ jobs:
12
steps:
13
- name: Checkout code
14
uses: actions/checkout@v4
15
-
+
16
- name: Setup Python
17
uses: actions/setup-python@v4
18
with:
19
python-version: '3.9'
20
cache: 'pip'
21
22
- name: Create and activate virtual environment
23
run: |
24
python -m venv .venv
25
source .venv/bin/activate
26
echo "VIRTUAL_ENV=$(pwd)/.venv" >> $GITHUB_ENV
27
echo "$(pwd)/.venv/bin" >> $GITHUB_PATH
28
29
- name: Install Dependencies
30
31
python -m pip install --upgrade pip
32
python -m pip install -r eng/ci_tools.txt
33
34
+ - name: Install azsdk mcp server
35
+ shell: pwsh
36
+ run: |
37
+ ./eng/common/mcp/azure-sdk-mcp.ps1 -InstallDirectory $HOME/bin
0 commit comments