Skip to content

Commit c4c924c

Browse files
authored
Merge pull request #3 from 1kbgz/tkp/os
Expand os test set
2 parents de0f9be + c758dad commit c4c924c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/build.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
strategy:
3131
matrix:
32-
os: [ubuntu-latest]
32+
os: [ubuntu-latest, macos-latest, windows-latest]
3333
python-version: ["3.11"]
3434

3535
steps:
@@ -67,16 +67,20 @@ jobs:
6767
uses: EnricoMi/publish-unit-test-result-action@v2
6868
with:
6969
files: '**/junit.xml'
70+
if: ${{ matrix.os == 'ubuntu-latest' }}
7071

7172
- name: Upload coverage
7273
uses: codecov/codecov-action@v5
7374
with:
7475
token: ${{ secrets.CODECOV_TOKEN }}
76+
if: ${{ matrix.os == 'ubuntu-latest' }}
7577

7678
- name: Make dist
7779
run: make dist
80+
if: ${{ matrix.os == 'ubuntu-latest' }}
7881

7982
- uses: actions/upload-artifact@v4
8083
with:
8184
name: dist-${{matrix.os}}
8285
path: dist
86+
if: ${{ matrix.os == 'ubuntu-latest' }}

0 commit comments

Comments
 (0)