![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/composer/spdx-licenses/.github/workflows/ |
name: "PHP Lint" on: - push - pull_request jobs: tests: name: "Lint" runs-on: ubuntu-latest strategy: matrix: php-version: - "5.3" - "8.0" steps: - name: "Checkout" uses: "actions/checkout@v2" - name: "Install PHP" uses: "shivammathur/setup-php@v2" with: coverage: "none" php-version: "${{ matrix.php-version }}" - name: "Lint PHP files" run: "find src/ -type f -name '*.php' -print0 | xargs -0 -L1 -P4 -- php -l -f"