This repository was archived by the owner on Jun 5, 2025. It is now read-only.
Bump library/python from 3.12-slim@sha256:34656cd90456349040784165b9decccbcee4de66f3ead0a1168ba893455afd1e to sha256:9819e5616923079cc16af4a93d4be92c0c487c6e02fd9027220381f3e125d64a #1156
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
| # These set of workflows run on every pull request | |
| name: Run - pull_request | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| security: | |
| name: Security Checks | |
| uses: ./.github/workflows/security.yml | |
| ci: | |
| name: Build, Test & Lint | |
| uses: ./.github/workflows/ci.yml | |
| image-build: | |
| name: OCI Image - Build x86 | |
| uses: ./.github/workflows/image-build.yml | |
| with: | |
| artifact-name: "codegate-image" | |
| platform: "linux/amd64" | |
| image-build-arm64: | |
| name: OCI Image - Build ARM64 | |
| uses: ./.github/workflows/image-build.yml | |
| with: | |
| artifact-name: "codegate-image" | |
| platform: "linux/arm64" | |
| integration-tests: | |
| if: github.event.pull_request.head.repo.full_name == 'stacklok/codegate' | |
| name: Integration Tests | |
| needs: [ci, image-build] # We need the image available in order to run the integration tests | |
| uses: ./.github/workflows/integration-tests.yml | |
| with: | |
| artifact-name: "codegate-image" | |
| secrets: | |
| copilot-key: ${{ secrets.INTEGRATION_TESTS_COPILOT_KEY }} | |
| anthropic-key: ${{ secrets.INTEGRATION_TESTS_ANTHROPIC_KEY }} | |
| openrouter-key: ${{ secrets.INTEGRATION_TESTS_OPENROUTER_KEY }} |