Back | Home
الـ Path الحالي: /home/picotech/domains/instantly.picotech.app/public_html/public/./../app/.././../../finland.picotech.app/public_html/storage/../vendor/./nikic/../dompdf/../alexandr-mironov/../monolog/../unicodeveloper/../dragonmantank/../telnyx/.././vlucas/.././phenx/../firebase/../maatwebsite/../alexandr-mironov/php8-smpp
الملفات الموجودة في هذا الـ Path:
.
..
.gitignore
.gitlab-ci.yml
README.md
composer.json
docs
phpstan.neon.dist
src
tests

مشاهدة ملف: .gitlab-ci.yml

stages:
  - test

phpstan:
  stage: test
  image: localhost:5000/php8
  before_script:
    - curl -s https://getcomposer.org/installer | php -- --filename=composer.phar
    - php composer.phar i
    - php composer.phar dump
  script:
    - php vendor/phpstan/phpstan/phpstan analyse --memory-limit 1024M -c phpstan.neon.dist --no-progress --error-format=junit > phpstan-report.xml
  after_script:
    - php vendor/phpstan/phpstan/phpstan analyse --memory-limit 1024M -c phpstan.neon.dist --no-progress
  artifacts:
    when: always
    reports:
      junit: phpstan-report.xml
    expire_in: 30 days
    paths:
      - phpstan-report.xml
  tags: ["kube-docker"]