Improvement of the way we draw the lines and their interaction with t… #61
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: BOM Compatibility Tests | ||
| on: | ||
| workflow_dispatch: | ||
| inputs: | ||
| ml_ref: | ||
| description: 'luxonis-ml version (branch/tag/SHA)' | ||
| required: true | ||
| default: main | ||
| train_ref: | ||
| description: 'luxonis-train version (branch/tag/SHA)' | ||
| required: true | ||
| default: main | ||
| jobs: | ||
| checkout-train: | ||
| runs-on: ubuntu-latest | ||
| outputs: | ||
| repo-dir: ${{ steps.checkout.outputs.path }} | ||
| steps: | ||
| - name: Checkout luxonis-train | ||
| id: checkout | ||
| uses: actions/checkout@v3 | ||
| with: | ||
| repository: Luxonis/luxonis-train | ||
| ref: ${{ inputs.train_ref }} | ||
| path: luxonis-train | ||
| test-luxonis-train: | ||
| needs: checkout-train | ||
| uses: ./luxonis-train/.github/workflows/tests.yaml | ||
| with: | ||
| ml_ref: ${{ inputs.ml_ref }} | ||
| secrets: inherit | ||