File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 4
4
pull_request :
5
5
paths :
6
6
- ' idf_build_apps/**'
7
+ - ' .github/workflows/test-build-idf-apps.yml'
7
8
push :
8
9
branches :
9
10
- main
60
61
test ! -f build_esp32s2/hello_world.bin
61
62
62
63
build-apps-on-idf-master :
63
- runs-on : ubuntu-latest
64
+ strategy :
65
+ matrix :
66
+ os : [ubuntu-latest, windows-latest]
67
+ runs-on : ${{ matrix.os }}
64
68
container :
65
69
image : espressif/idf:latest
66
70
env :
78
82
--size-file size_info.json
79
83
pytest --cov idf_build_apps --cov-report term-missing:skip-covered --junit-xml pytest.xml | tee pytest-coverage.txt
80
84
- name : Pytest coverage comment
81
- if : github.event_name == 'pull_request'
85
+ if : github.event_name == 'pull_request' && matrix.os == 'ubuntu-latest'
82
86
uses : MishaKav/pytest-coverage-comment@main
83
87
with :
84
88
pytest-coverage-path : pytest-coverage.txt
You can’t perform that action at this time.
0 commit comments