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 0a36e7f commit 6aaa903Copy full SHA for 6aaa903
.github/workflows/backend.yml
@@ -90,7 +90,7 @@ jobs:
90
python -m pytest -n auto --junitxml=coverage/coverage.xml --cov=skore src/ tests/ | tee coverage/coverage.txt
91
92
- name: Upload coverage reports
93
- if: ${{ matrix.coverage }}
+ if: ${{ matrix.coverage && (github.event_name == 'pull_request') }}
94
uses: actions/upload-artifact@v4
95
with:
96
name: backend-coverage
.github/workflows/frontend.yml
@@ -63,6 +63,7 @@ jobs:
63
npm run test:unit:coverage
64
65
66
+ if: ${{ github.event_name == 'pull_request' }}
67
68
69
name: frontend-coverage
0 commit comments