chore(deps): bump autofix-ci/action from dd55f44df8f7cdb7a6bf74c78677eb8acd40cd0a to ff86a557419858bb967097bfc916833f5647fa8c #5529
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/job_test_unit.yaml | |
build: | |
name: Build | |
uses: ./.github/workflows/build.yaml | |
test_api: | |
name: Test API | |
uses: ./.github/workflows/job_test_api_local.yaml | |
test_agent_local: | |
name: Test Agent Local | |
uses: ./.github/workflows/job_test_agent_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 |