Skip to content

Onboard repository to Copilot cloud agent with accurate instructions and setup steps #2

Onboard repository to Copilot cloud agent with accurate instructions and setup steps

Onboard repository to Copilot cloud agent with accurate instructions and setup steps #2

name: "Copilot Setup Steps"
# Run automatically when this file changes, and allow manual runs from the Actions tab.
on:
workflow_dispatch:
push:
paths:
- .github/workflows/copilot-setup-steps.yml
pull_request:
paths:
- .github/workflows/copilot-setup-steps.yml
jobs:
# Job name MUST be `copilot-setup-steps` to be picked up by Copilot.
copilot-setup-steps:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install Poetry
run: pip install poetry
- name: Install project dependencies
run: poetry install