feat: EXPR and WRAP_ACTIONS v0 model parity via Rust bindings #742
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: Code Quality | |
| on: | |
| pull_request: | |
| branches: [ mainline, release, 'patch_*' ] | |
| workflow_call: | |
| inputs: | |
| branch: | |
| required: false | |
| type: string | |
| tag: | |
| required: false | |
| type: string | |
| jobs: | |
| Test: | |
| name: Python | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, windows-latest, macos-latest] | |
| python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14'] | |
| uses: OpenJobDescription/.github/.github/workflows/reusable_python_build.yml@mainline | |
| with: | |
| os: ${{ matrix.os }} | |
| python-version: ${{ matrix.python-version }} | |
| ref: ${{inputs.tag}} |