Allow dumping models first inference input/output data to pickle files #209
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: model_api-github-actions | |
| on: pull_request | |
| permissions: read-all # Required by https://github.com/ossf/scorecard/blob/e23b8ad91fd6a64a0a971ca4fc0a4d1650725615/docs/checks.md#token-permissions | |
| jobs: | |
| model_api-github-actions: | |
| strategy: | |
| matrix: | |
| runs-on: [ubuntu-20.04, ubuntu-22.04] | |
| python-version: [3.9, '3.10', '3.11', 3.12] | |
| runs-on: ${{ matrix.runs-on }} | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-python@v4 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - run: python -m pip install demos/common/python/ openvino | |
| - run: python -c "from model_zoo import model_api" |