Skip to content

Commit 33e0a8a

Browse files
committed
ci: enable windows test
1 parent facac97 commit 33e0a8a

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/test-build-idf-apps.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,10 @@ jobs:
6060
test ! -f build_esp32s2/hello_world.bin
6161
6262
build-apps-on-idf-master:
63-
runs-on: ubuntu-latest
63+
strategy:
64+
matrix:
65+
os: [ubuntu-latest, windows-latest]
66+
runs-on: ${{ matrix.os }}
6467
container:
6568
image: espressif/idf:latest
6669
env:
@@ -78,7 +81,7 @@ jobs:
7881
--size-file size_info.json
7982
pytest --cov idf_build_apps --cov-report term-missing:skip-covered --junit-xml pytest.xml | tee pytest-coverage.txt
8083
- name: Pytest coverage comment
81-
if: github.event_name == 'pull_request'
84+
if: github.event_name == 'pull_request' && matrix.os == 'ubuntu-latest'
8285
uses: MishaKav/pytest-coverage-comment@main
8386
with:
8487
pytest-coverage-path: pytest-coverage.txt

0 commit comments

Comments
 (0)