Fix agent test condition trigger

This commit is contained in:
Adam
2025-10-29 12:00:01 -07:00
committed by James Murdza
parent d35e6e4b2a
commit a0fdc8a194

View File

@@ -11,13 +11,13 @@ on:
test_models:
description: "Test all supported models (requires API keys)"
required: false
default: "true"
default: true
type: boolean
jobs:
# Test all CUA models - runs on PRs or when manually triggered
test-all-models:
if: ${{ github.event_name == 'pull_request' || inputs.test_models == 'true' }}
if: ${{ github.event_name == 'pull_request' || fromJSON(inputs.test_models) }}
runs-on: ubuntu-latest
strategy:
fail-fast: false