Added github actions workflow to lint and test when pushing code #138
Travis CI / Travis CI - Branch
succeeded
Jul 17, 2024 in 19m 56s
Build Passed
The build passed, just like the previous build.
Details
This is a normal build for the github-actions-ci branch. You should be able to reproduce it by checking out the branch locally.
Jobs and Stages
This build has five jobs, running in parallel.
Job | PHP | OS | State |
---|---|---|---|
525.1 | 7.2 | Linux | passed |
525.2 | 7.3 | Linux | passed |
525.3 | 7.4 | Linux | passed |
525.4 | 8.0 | Linux | passed |
525.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