Skip to content

Fix for missing MultiSafepay logo - README.md #2

Fix for missing MultiSafepay logo - README.md

Fix for missing MultiSafepay logo - README.md #2

Workflow file for this run

name: Static Analysis
on:
pull_request:
branches:
- master
jobs:
Static_analysis:
runs-on: ubuntu-latest
name: PHPStan Static Analysis
strategy:
matrix:
php-version:
- '7.2'
- '7.3'
- '7.4'
- '8.0'
- '8.1'
- '8.2'
steps:
- name: Install php
uses: shivammathur/setup-php@master
with:
php-version: ${{ matrix.php-version }}
- name: Checkout SDK
uses: actions/checkout@v1
- name: Install dependencies
run: composer install
- name: Run PHPStan
run: vendor/bin/phpstan analyse --configuration=tests/phpstan/phpstan.neon --memory-limit 1G --error-format github