feat(kubernetes): add agent execution mode, GKE Sandbox, and image pu… #94
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 and Format | |
| on: | |
| pull_request: | |
| branches: [main, dev] | |
| jobs: | |
| python-lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: Set up Python | |
| uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0 | |
| with: | |
| python-version: "3.13" | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@61cb8a9741eeb8a550a1b8544337180c0fc8476b # v7.2.0 | |
| - name: Install just | |
| uses: taiki-e/install-action@dfcb1ee29051d97c8d0f2d437199570008fd5612 # 2.65.15 | |
| with: | |
| tool: just # latest | |
| checksum: true | |
| fallback: none | |
| - name: Install dependencies | |
| run: just install | |
| - name: Lint with ruff | |
| run: just lint | |
| - name: Check formatting with ruff | |
| run: just format-check | |
| - name: Type checking with ty | |
| run: just typecheck | |
| - name: Run Unit Tests | |
| run: just test-unit | |
| - name: Security scan with Bandit | |
| run: just security-scan |