Add Ag2 (Formerly Autogen) Example - Show how to deploy it on Vertex AI Reasoning Engine #26
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Notebook Linting | |
on: | |
pull_request: | |
branches: [main] | |
push: | |
branches-ignore: [main] | |
jobs: | |
notebook-lint: | |
name: Notebook Linter | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r .github/workflows/notebook_linter/requirements.txt | |
- name: Make script executable | |
run: chmod +x .github/workflows/notebook_linter/run_linter.sh | |
- name: Run notebook linter | |
run: bash .github/workflows/notebook_linter/run_linter.sh |