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 6a49706 commit a8213bcCopy full SHA for a8213bc
.travis.yml
@@ -81,7 +81,17 @@ jobs:
81
- vendor/bin/phpstan analyse --no-progress # Run PHPStan
82
83
after_success:
84
-- curl -s https://codecov.io/bash | bash
+ - |
85
+ if [ "${TRAVIS_PHP_VERSION}" == "7.4" ] && [ "${DEPENDENCIES}" = "highest" ]; then
86
+ curl https://keybase.io/codecovsecurity/pgp_keys.asc | gpg --import &&
87
+ curl -Os https://uploader.codecov.io/latest/linux/codecov &&
88
+ curl -Os https://uploader.codecov.io/latest/linux/codecov.SHA256SUM &&
89
+ curl -Os https://uploader.codecov.io/latest/linux/codecov.SHA256SUM.sig &&
90
+ gpg --verify codecov.SHA256SUM.sig codecov.SHA256SUM &&
91
+ shasum -a 256 -c codecov.SHA256SUM &&
92
+ chmod +x codecov &&
93
+ ./codecov -t ${CODECOV_TOKEN}
94
+ fi
95
96
notifications:
97
slack:
0 commit comments