We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent facac97 commit 33e0a8aCopy full SHA for 33e0a8a
.github/workflows/test-build-idf-apps.yml
@@ -60,7 +60,10 @@ jobs:
60
test ! -f build_esp32s2/hello_world.bin
61
62
build-apps-on-idf-master:
63
- runs-on: ubuntu-latest
+ strategy:
64
+ matrix:
65
+ os: [ubuntu-latest, windows-latest]
66
+ runs-on: ${{ matrix.os }}
67
container:
68
image: espressif/idf:latest
69
env:
@@ -78,7 +81,7 @@ jobs:
78
81
--size-file size_info.json
79
82
pytest --cov idf_build_apps --cov-report term-missing:skip-covered --junit-xml pytest.xml | tee pytest-coverage.txt
80
83
- name: Pytest coverage comment
- if: github.event_name == 'pull_request'
84
+ if: github.event_name == 'pull_request' && matrix.os == 'ubuntu-latest'
85
uses: MishaKav/pytest-coverage-comment@main
86
with:
87
pytest-coverage-path: pytest-coverage.txt
0 commit comments