We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f37eff5 commit c49d83aCopy full SHA for c49d83a
1 file changed
.github/workflows/tests.yml
@@ -54,13 +54,18 @@ jobs:
54
run: composer test:unit
55
56
- name: Upload coverage to Codecov
57
- if: matrix.php == '8.1'
+ if: ${{ matrix.php == '8.1' && secrets.CODECOV_TOKEN != '' }}
58
uses: codecov/codecov-action@v5
59
with:
60
files: build/coverage.xml
61
+ disable_search: true
62
fail_ci_if_error: true
63
token: ${{ secrets.CODECOV_TOKEN }}
64
65
+ - name: Skip Codecov upload (missing CODECOV_TOKEN)
66
+ if: ${{ matrix.php == '8.1' && secrets.CODECOV_TOKEN == '' }}
67
+ run: echo "Codecov upload skipped because CODECOV_TOKEN is not configured for this workflow context."
68
+
69
integration-live:
70
name: Integration (live RNIDS)
71
runs-on: ubuntu-latest
0 commit comments