Skip to content

Fix publish workflow: matrix build for all packages; rename shared module; remove backward-compat re-exports #34

Fix publish workflow: matrix build for all packages; rename shared module; remove backward-compat re-exports

Fix publish workflow: matrix build for all packages; rename shared module; remove backward-compat re-exports #34

name: Copilot Setup Steps
on:
workflow_dispatch:
push:
paths:
- .github/workflows/copilot-setup-steps.yml
pull_request:
paths:
- .github/workflows/copilot-setup-steps.yml
jobs:
copilot-setup-steps:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
version: "0.10.7"
enable-cache: true
- name: Setup Python
uses: 'actions/setup-python@v6'
with:
python-version-file: "adk/pyproject.toml"
pip-install: "pre-commit"
- name: Install dependencies
run: make build
- name: Configure precommit
run: pre-commit install