Fix/remove cart customer check exception #2096
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Static Analysis" | |
on: | |
pull_request: | |
concurrency: | |
group: sa-${{ github.head_ref || github.run_id }} # will be canceled on subsequent pushes in pull requests but not branches | |
cancel-in-progress: true | |
jobs: | |
static-analysis: | |
strategy: | |
fail-fast: false | |
matrix: | |
php: ["8.2", "8.3"] | |
laravel: ["^10.0", "^11.0"] | |
dependencies: ["highest"] | |
name: "PHP ${{ matrix.php }} - L${{ matrix.laravel }} ${{ matrix.dependencies == 'highest' && '↑' || '↓' }}" | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: "Checkout code" | |
uses: actions/checkout@v4 | |
- name: "Setup PHP" | |
uses: "shivammathur/setup-php@v2" | |
with: | |
php-version: "${{ matrix.php }}" | |
extensions: "dom, curl, libxml, mbstring, zip, fileinfo" | |
tools: "composer:v2" | |
coverage: "none" | |
- name: "Install dependencies from composer.json" | |
if: "matrix.dependencies != 'lowest'" | |
run: "composer update --with='laravel/framework:${{ matrix.laravel }}' --no-interaction --no-progress" | |
- name: "Install lowest dependencies from composer.json" | |
if: "matrix.dependencies == 'lowest'" | |
run: "composer update --with='laravel/framework:${{ matrix.laravel }}' --no-interaction --no-progress --prefer-lowest" | |
- name: "Run PHPStan" | |
run: ./vendor/bin/phpstan |