Skip to content

added PHP version support badge #5

added PHP version support badge

added PHP version support badge #5

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
run:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ubuntu-latest]
php-versions: ['7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: mbstring, intl, zip, xml
coverage: none
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Static analysis
run: |
composer require --dev phpstan/phpstan
vendor/bin/phpstan analyse src tests
- name: Run test suite
run: vendor/bin/phpunit tests/