Added github actions workflow to lint and test when pushing code #138
Travis CI / Travis CI - Pull Request
succeeded
Jul 17, 2024 in 21m 26s
Build Passed
The build passed, just like the previous build.
Details
This is a pull request build.
It is running a build against the merge commit, after merging #138 Added github actions workflow to lint and test when pushing code.
Any changes that have been made to the master branch before the build ran are also included.
Jobs and Stages
This build has five jobs, running in parallel.
Job | PHP | OS | State |
---|---|---|---|
526.1 | 7.2 | Linux | passed |
526.2 | 7.3 | Linux | passed |
526.3 | 7.4 | Linux | passed |
526.4 | 8.0 | Linux | passed |
526.5 | 8.1.2 | Linux | passed |
Build Configuration
Build Option | Setting |
---|---|
Language | PHP |
Operating System | Linux (Xenial) |
PHP Versions | 7.2, 7.3, 7.4, 8.0, 8.1.2 |
Build Configuration
{
"language": "php",
"os": [
"linux"
],
"dist": "xenial",
"php": [
"7.2",
"7.3",
"7.4",
"8.0",
"8.1.2"
],
"sudo": false,
"install": [
"travis_retry composer install --prefer-source"
],
"script": [
"composer ci"
],
"after_success": [
"if [[ \"`phpenv version-name`\" != \"7.4\" ]]; then exit 0; fi",
"XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-clover coverage.clover",
"wget https://scrutinizer-ci.com/ocular.phar",
"php ocular.phar code-coverage:upload --format=php-clover coverage.clover"
],
"notifications": {
"email": [
{
"recipients": [
"[email protected]"
],
"on_success": "change",
"on_failure": "always"
}
],
"irc": [
{
"channels": [
"ircs://irc.libera.chat:6697#wikidata-feed"
],
"on_success": "change",
"on_failure": "always"
}
]
},
"cache": {
"directories": [
"$HOME/.composer/cache"
]
}
}
Loading