fix: Adds a secondary check and a fall back to Plain #4527
Workflow file for this run
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: PR | |
on: | |
pull_request: | |
branches: [main] | |
merge_group: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
test_packages: | |
name: Test Packages | |
uses: ./.github/workflows/unit_test.yaml | |
build: | |
name: Build | |
uses: ./.github/workflows/build.yaml | |
test_api: | |
name: Test API | |
uses: ./.github/workflows/job_test_api_local.yaml | |
# test_agent_integration: | |
# name: Test Agent Integration | |
# runs-on: ubuntu-latest | |
# timeout-minutes: 60 | |
# steps: | |
# - uses: actions/checkout@v4 | |
# - name: Run containers | |
# run: docker compose -f ./deployment/docker-compose.yaml up -d agent_lb | |
# - name: Install | |
# uses: ./.github/actions/install | |
# with: | |
# go: true | |
# - name: Test | |
# run: go test -v -cover -json -timeout=60m -failfast ./integration/identities/... ./integration/cluster/... | tparse -all -progress -smallscreen | |
# env: | |
# CLUSTER_TEST: true | |
# AGENT_BASE_URL: "http://localhost:8080" | |
# working-directory: apps/agent |