Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/modules/main/vendor/geoip2/geoip2/.github/workflows/
Upload File :
Current File : /var/www/homesaver/www/bitrix/modules/main/vendor/geoip2/geoip2/.github/workflows/lint.yml

name: PHP Lints

on:
  push:
  pull_request:
  schedule:
    - cron: '55 3 * * SUN'

jobs:
  run:
    runs-on: ubuntu-latest
    name: "PHP Lints"
    steps:
      - name: Setup PHP
        uses: shivammathur/setup-php@v2
        with:
          php-version: 7.4

      - name: Checkout
        uses: actions/checkout@v2

      - name: Install dependencies
        run: composer install --no-progress --prefer-dist --optimize-autoloader

      - name: Lint with php-cs-fixer
        run: vendor/bin/php-cs-fixer fix --verbose --diff --dry-run

      - name: Lint with phpcs
        run: vendor/bin/phpcs --standard=PSR2 src/

      - name: Lint with phpstan
        run: vendor/bin/phpstan analyze