Commit 3fac289 1 parent 862a83e commit 3fac289 Copy full SHA for 3fac289
File tree 3 files changed +16
-8
lines changed
3 files changed +16
-8
lines changed Original file line number Diff line number Diff line change 8
8
set +x
9
9
10
10
# Agents will merge all coverage data...
11
- if [[ " ${GITHUB_EVENT_NAME} " == " pull_request" ]]
12
- then
13
- bash <( curl -s https://codecov.io/bash) -s " /tmp" -f ' *.xml' -t " $CODECOV_TOKEN "
14
- fi
11
+ # if [[ "${GITHUB_EVENT_NAME}" == "pull_request" ]]
12
+ # then
13
+ # bash <(curl -s https://codecov.io/bash) -s "/tmp" -f '*.xml' -t "$CODECOV_TOKEN"
14
+ # fi
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ CONFIG="--verbose --configuration .github/phpunit-$DB.xml"
12
12
vendor/bin/phpunit ${CONFIG}
13
13
14
14
# Agents will merge all coverage data...
15
- if [[ " ${GITHUB_EVENT_NAME} " == " pull_request" ]]
16
- then
17
- bash <( curl -s https://codecov.io/bash) -s " /tmp" -f ' *.xml' -t " $CODECOV_TOKEN "
18
- fi
15
+ # if [[ "${GITHUB_EVENT_NAME}" == "pull_request" ]]
16
+ # then
17
+ # bash <(curl -s https://codecov.io/bash) -s "/tmp" -f '*.xml' -t "$CODECOV_TOKEN"
18
+ # fi
Original file line number Diff line number Diff line change @@ -240,6 +240,14 @@ jobs:
240
240
CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
241
241
run : .github/setup-results.sh
242
242
working-directory : ./elkarte
243
+
244
+ - name : Send Coverage Reports
245
+ if : ${{ github.event_name == 'pull_request' }}
246
+ uses : codecov/codecov-action@v4
247
+ with :
248
+ files : /home/runner/work/Elkarte/tmp/mydb.xml
249
+ token : ${{ secrets.CODECOV_TOKEN }}
250
+ verbose : false
243
251
# END MySQL and MariaDB Job
244
252
245
253
# START Postgres Tests
You can’t perform that action at this time.
0 commit comments