Welcome to mirror list, hosted at ThFree Co, Russian Federation.

phpcs.yml « workflows « .github - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 169942b071a6ddedd1a3c38216646d0d51174fc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
name: PHPCS check

on: pull_request

jobs:
  phpcs:
    name: PHPCS
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - name: Install dependencies
        run: composer install --dev --prefer-dist --no-progress --no-suggest
      - name: PHPCS check
        uses: chekalsky/phpcs-action@v1
        with:
          phpcs_bin_path: './vendor/bin/phpcs'
          enable_warnings: true