Skip to content

feat: add optional parameter for configure ssl algorithm in Singer / #35 #81

feat: add optional parameter for configure ssl algorithm in Singer / #35

feat: add optional parameter for configure ssl algorithm in Singer / #35 #81

Workflow file for this run

# GitHub Action see https://github.com/shivammathur/setup-php
name: Code Analyse
on: [push, pull_request]
jobs:
unit_tests:
name: GPWebPay-core (PHP ${{ matrix.php-versions }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php-versions: ['7.4', '8.0', '8.1', '8.2']
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP, with composer and extensions
uses: shivammathur/setup-php@v2 #https://github.com/shivammathur/setup-php
with:
php-version: ${{ matrix.php-versions }}
extensions: openssl
coverage: none #optional
- name: Composer dependencies
uses: "ramsey/composer-install@v1"
- name: Run Codestyle chceck
run: php vendor/bin/phpcs -p
- name: Run PHPStan
run: php vendor/bin/phpstan analyse