-
Notifications
You must be signed in to change notification settings - Fork 3.3k
42 lines (33 loc) · 1.05 KB
/
copilot-setup-steps.yml
File metadata and controls
42 lines (33 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Copilot Setup Steps
on: workflow_dispatch
jobs:
copilot-setup-steps:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: 'pip'
- name: Create and activate virtual environment
run: |
python -m venv .venv
source .venv/bin/activate
echo "VIRTUAL_ENV=$(pwd)/.venv" >> $GITHUB_ENV
echo "$(pwd)/.venv/bin" >> $GITHUB_PATH
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r eng/ci_tools.txt
- name: Install azsdk mcp server
shell: pwsh
run: |
./eng/common/mcp/azure-sdk-mcp.ps1 -InstallDirectory $HOME/bin
- name: Install gh-aw extension
uses: github/gh-aw-actions/setup-cli@df014dd7d03b638e860b2aeca95c833fd97c8cf1 # v0.61.0
with:
version: v0.61.0