docs: fix Tutorial 8 AgentExecutor import path #3329
Workflow file for this run
This file contains hidden or 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: Lint Code Base | |
| on: | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| lint: | |
| name: Lint Code Base | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| packages: read | |
| statuses: write | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Load Super Linter Environment Variables into GITHUB_ENV | |
| run: | | |
| grep -v '^\\(#.*\\|\\s\\?\\)$' .github/super-linter.env >> "${GITHUB_ENV}" | |
| - name: GitHub Super Linter | |
| uses: super-linter/super-linter/slim@v8 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| api-linter: | |
| name: API Linter | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v6 | |
| - name: Setup Buf | |
| uses: bufbuild/buf-setup-action@v1 | |
| - name: Download proto dependencies | |
| working-directory: specification | |
| run: | | |
| buf dep update | |
| buf export buf.build/googleapis/googleapis --output=.googleapis | |
| - name: Install api-linter | |
| run: | | |
| curl -L https://github.com/googleapis/api-linter/releases/download/v1.67.6/api-linter-1.67.6-linux-amd64.tar.gz -o api-linter.tar.gz | |
| tar -xzf api-linter.tar.gz | |
| sudo mv api-linter /usr/local/bin/ | |
| sudo chmod +x /usr/local/bin/api-linter | |
| - name: Run API Linter | |
| run: | | |
| # Run api-linter with exported googleapis protos | |
| api-linter --config specification/.api-linter.yaml --output-format github --set-exit-status --proto-path specification --proto-path specification/.googleapis specification/a2a.proto |