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.
2 parents de0f9be + c758dad commit c4c924cCopy full SHA for c4c924c
.github/workflows/build.yaml
@@ -29,7 +29,7 @@ jobs:
29
30
strategy:
31
matrix:
32
- os: [ubuntu-latest]
+ os: [ubuntu-latest, macos-latest, windows-latest]
33
python-version: ["3.11"]
34
35
steps:
@@ -67,16 +67,20 @@ jobs:
67
uses: EnricoMi/publish-unit-test-result-action@v2
68
with:
69
files: '**/junit.xml'
70
+ if: ${{ matrix.os == 'ubuntu-latest' }}
71
72
- name: Upload coverage
73
uses: codecov/codecov-action@v5
74
75
token: ${{ secrets.CODECOV_TOKEN }}
76
77
78
- name: Make dist
79
run: make dist
80
81
82
- uses: actions/upload-artifact@v4
83
84
name: dist-${{matrix.os}}
85
path: dist
86
0 commit comments