We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00ed179 commit 6f9d587Copy full SHA for 6f9d587
.github/workflows/tests.yml
@@ -52,8 +52,12 @@ jobs:
52
php -f examples/read_polygon.php > /dev/null
53
54
- name: Send coverage
55
- uses: codecov/codecov-action@v3
+ uses: codecov/codecov-action@v5
56
+ # Do not run this step on forked versions of the main repository (example: contributor forks)
57
+ if: github.repository == 'phpmyadmin/shapefile'
58
with:
59
+ fail_ci_if_error: true
60
+ token: ${{ secrets.CODECOV_TOKEN }}
61
flags: unit-${{ matrix.php-version }}-${{ matrix.php-extensions }}-${{ matrix.os }}
62
name: phpunit-${{ matrix.php-version }}-${{ matrix.php-extensions }}-${{ matrix.os }}
63
0 commit comments