Skip to content

Updates ubuntu version. #24

Updates ubuntu version.

Updates ubuntu version. #24

Workflow file for this run

name: PHPSpec-Tests
on: push
jobs:
phpspec-tests:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ ubuntu-20.04 ]
php-versions: ['8.0.12', '8.1', '8.2', '8.3' ]
name: Evaluate Behavior, ${{ matrix.php-versions }} on ${{ matrix.operating-system }}
steps:
# Get the source code
- name: Checkout
uses: actions/checkout@v2
# Prepare PHP
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: xdebug
env:
fail-fast: false
# Composer Install
- name: Composer Install
uses: php-actions/composer@v5
with:
php_version: ${{ matrix.php-versions }}
dev: yes
interaction: no
args: --prefer-source
version: 2
# Execute PHPSpec
- name: Execute PHPSpec
run: XDEBUG_MODE=coverage vendor/bin/phpspec --config=phpspec.yml run