Skip to content

Merge pull request #5 from bowphp/add-command-transaction-service #17

Merge pull request #5 from bowphp/add-command-transaction-service

Merge pull request #5 from bowphp/add-command-transaction-service #17

Workflow file for this run

name: PHP Composer
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Check code standard
run: composer run-script phpcs
- name: Run test suite
run: composer run-script test