Skip to content

Bump version

Bump version #46

Workflow file for this run

name: CI
on:
push:
branches:
- v2.x
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: ['5.6', '7.0', '7.1', '7.2']
name: Test on PHP ${{ matrix.php }}
steps:
- uses: actions/checkout@v3
- name: Remove lock file
run: rm composer.lock
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- name: Install dependencies
run: composer install
- name: Start dev server
run: php -S localhost:8080 -t ./features/bootstrap > server.log 2>&1 &
- name: Run unit tests
run: vendor/bin/phpunit
- name: Run integration tests
run: vendor/bin/behat --strict