-
Notifications
You must be signed in to change notification settings - Fork 159
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[github] Add workflow for tools/model-explorer-circle (#14350)
This will introduce initial workflow for PR build and testing for tools/model-explorer-circle. ONE-DCO-1.0-Signed-off-by: SaeHie Park <[email protected]>
- Loading branch information
1 parent
46b27b2
commit 82e10a3
Showing
1 changed file
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
name: Run tools/model-explorer-circle build | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- release/* | ||
paths: | ||
- '.github/workflows/run-tools-mec-build.yml' | ||
- 'tools/model_explorer_circle/**' | ||
- '!**/*.md' | ||
pull_request: | ||
branches: | ||
- master | ||
- release/* | ||
paths: | ||
- '.github/workflows/run-tools-mec-build.yml' | ||
- 'tools/model_explorer_circle/**' | ||
- '!**/*.md' | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
jobs: | ||
test: | ||
strategy: | ||
matrix: | ||
# TODO add more versions | ||
python: ['3.10'] | ||
# TODO add more platforms | ||
platform: [ubuntu-latest] | ||
|
||
runs-on: ${{ matrix.platform }} | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Python ${{ matrix.python }} | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python }} | ||
|
||
- name: Install test dependencies | ||
run: python -m pip install --upgrade nox | ||
|
||
- name: Test | ||
run: | | ||
cd tools/model_explorer_circle | ||
python -m nox -s tests-${{ matrix.python }} |