Skip to content

#20 Migrated to PHP 8.2. Removed ECS. Updated testing and QA tools #19

#20 Migrated to PHP 8.2. Removed ECS. Updated testing and QA tools

#20 Migrated to PHP 8.2. Removed ECS. Updated testing and QA tools #19

Workflow file for this run

name: Testing service-buses
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php-versions: ['8.2']
steps:
- name: Checkout
uses: actions/checkout@v2
# https://github.com/shivammathur/setup-php (community)
- name: Setup PHP, extensions and composer with shivammathur/setup-php
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
env:
update: true
- name: Validate composer.json and composer.lock
run: composer validate
- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-suggest
- name: Testing out
run: composer test