Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added github actions workflow to lint and test when pushing code #138

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Added github actions workflow to lint and test when pushing code

0d8db56
Select commit
Loading
Failed to load commit list.
Open

Added github actions workflow to lint and test when pushing code #138

Added github actions workflow to lint and test when pushing code
0d8db56
Select commit
Loading
Failed to load commit list.
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"
    ]
  }
}