Server IP : 162.213.251.212 / Your IP : 3.144.24.113 [ Web Server : LiteSpeed System : Linux business55.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : allssztx ( 535) PHP Version : 8.1.31 Disable Function : NONE Domains : 1 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/allssztx/public_html/easybuyer/vendor/facade/ignition-contracts/.github/workflows/ |
Upload File : |
name: Psalm on: push: paths: - '**.php' - 'psalm.xml' jobs: psalm: name: psalm runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Setup PHP uses: shivammathur/setup-php@v2 with: php-version: '7.4' extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick coverage: none - name: Cache composer dependencies uses: actions/cache@v1 with: path: vendor key: composer-${{ hashFiles('composer.lock') }} - name: Run composer require run: composer require -n --prefer-dist - name: Run psalm run: ./vendor/bin/psalm -c psalm.xml