forked from Samsung/ONE
-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (43 loc) · 1.07 KB
/
run-tools-mec-build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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 }}