[2/3] sdks/python: enrich data with Milvus Search [Vector, Keyword, Hybrid] #1
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: Experiment with Matrix OS Equality | ||
| on: | ||
| workflow_dispatch: | ||
| jobs: | ||
| check_os_equality: | ||
| runs-on: ${{ matrix.os }} | ||
| strategy: | ||
| matrix: | ||
| os: | ||
| - [self-hosted, ubuntu-20.04, main] # Test case 1: Self-hosted array | ||
| - ubuntu-latest # Test case 2: GitHub-hosted string | ||
| steps: | ||
| - name: Print matrix.os value | ||
| run: echo "matrix.os is: ${{ matrix.os }}" | ||
| - name: Check equality with 'self-hosted' | ||
| run: | | ||
| echo "Is matrix.os == 'self-hosted'? ${{ matrix.os == 'self-hosted' }}" | ||