Skip to content

Bump versions

Bump versions #76

Workflow file for this run

name: test
on: ["push", "pull_request"]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3']
stability: [prefer-lowest, prefer-stable]
name: Test php ${{ matrix.php }} ${{ matrix.stability }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: none
extensions: mbstring, gmp
tools: composer:v2
- name: Setup problem matchers for PHPUnit
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
- name: Install composer dependencies ${{ matrix.composer_flags }}
run: composer update --ansi --no-progress --no-scripts --no-suggest --prefer-dist --${{ matrix.stability }}
- name: Run phpunit
run: |
php -v
vendor/bin/phpunit --verbose