Fix issue with null $alg in constructor #719
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: CI | |
on: [ push, pull_request ] | |
jobs: | |
phpunit: | |
name: Unit tests (PHP ${{ matrix.php-versions }}) | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php-versions: | |
- 7.3 | |
- 7.4 | |
- 8.0 | |
- 8.1 | |
- 8.2 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-versions }} | |
extensions: bz2, openssl, sodium, hash, gmp | |
tools: composer | |
- name: Get Composer cache directory | |
id: composer-cache | |
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
- name: Cache dependencies | |
uses: actions/cache@v4 | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: "php${{ matrix.php-versions }}-composer-${{ hashFiles('**/composer.json') }}" | |
restore-keys: "php${{ matrix.php-versions }}-composer-" | |
- name: Install dependencies | |
run: composer update && composer install | |
- name: Run tests | |
run: composer test | |
phpstan: | |
runs-on: ubuntu-latest | |
name: Static analysis | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.1 | |
tools: composer | |
- name: Get Composer cache directory | |
id: composer-cache | |
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
- name: Cache dependencies | |
uses: actions/cache@v4 | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: "phpstan-composer-${{ hashFiles('**/composer.json') }}" | |
restore-keys: "phpstan-composer-" | |
- name: Install dependencies | |
run: composer install | |
- name: Perform static analysis | |
run: composer phpstan |