fix(ollama): soft-fail on empty response in generate_from_raw #2697
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
| name: "Run CI" | |
| on: | |
| pull_request: | |
| types: [opened, reopened, synchronize] | |
| merge_group: | |
| push: | |
| branches: ['release/**'] | |
| workflow_dispatch: # used by release.sh for sync-PR CI (anti-loop workaround) | |
| inputs: | |
| ref: | |
| description: 'Branch or ref to run CI against' | |
| type: string | |
| required: false | |
| permissions: {} | |
| jobs: | |
| code-checks: | |
| permissions: | |
| contents: read | |
| uses: ./.github/workflows/quality.yml | |