HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux ip-172-31-42-149 5.15.0-1084-aws #91~20.04.1-Ubuntu SMP Fri May 2 07:00:04 UTC 2025 aarch64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/vhost/disk-apps/qas.sports-crowd.com/vendor/phar-io/manifest/.github/workflows/ci.yml
name: "CI"

on:
  push:
    branches:
      - "master"
  pull_request: null

jobs:
  qa:
    name: "QA"

    runs-on: "ubuntu-latest"

    steps:
      - name: "Checkout"
        uses: "actions/checkout@v3.5.2"

      - name: "Set up PHP"
        uses: "shivammathur/setup-php@2.25.1"
        with:
          coverage: "none"
          php-version: "8.0"
          tools: "phive"

      - name: "Install dependencies with composer"
        run: "composer install --no-interaction --optimize-autoloader --prefer-dist"

      - name: "Install dependencies with phive"
        env:
          GITHUB_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
        run: "ant install-tools"

      - name: "Run php-cs-fixer"
        run: "ant php-cs-fixer"

      - name: "Run psalm"
        run: "ant psalm"

  tests:
    name: "Tests"

    runs-on: "ubuntu-latest"

    strategy:
      fail-fast: false

      matrix:
        php-versions:
          - "7.2"
          - "7.3"
          - "7.4"
          - "8.0"
          - "8.1"
          - "8.2"

    steps:
      - name: "Checkout"
        uses: "actions/checkout@v3.5.2"

      - name: "Set up PHP"
        uses: "shivammathur/setup-php@2.25.1"
        env:
          COMPOSER_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
        with:
          coverage: "pcov"
          extensions: "${{ env.extensions }}"
          ini-values: "display_errors=On, error_reporting=-1, memory_limit=2G"
          php-version: "${{ matrix.php-versions }}"
          tools: "phive"

      - name: "Install dependencies with composer"
        run: "composer install --no-interaction --optimize-autoloader --prefer-dist"

      - name: "Install dependencies with phive"
        env:
          GITHUB_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
        run: "ant install-tools"

      - name: "Run PHPUnit"
        run: "tools/phpunit --coverage-clover build/logs/clover.xml"

      - name: "Send code coverage report to codecov.io"
        uses: "codecov/codecov-action@v3.1.4"
        with:
          files: "build/logs/clover.xml"