mirror of
https://github.com/trycua/computer.git
synced 2026-01-04 12:30:08 -06:00
Fix agent test condition trigger
This commit is contained in:
4
.github/workflows/test-cua-models.yml
vendored
4
.github/workflows/test-cua-models.yml
vendored
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user