Skip to content

Bump guzzlehttp/psr7 from 2.4.3 to 2.5.0 in /tools/04_php-coveralls #79

Bump guzzlehttp/psr7 from 2.4.3 to 2.5.0 in /tools/04_php-coveralls

Bump guzzlehttp/psr7 from 2.4.3 to 2.5.0 in /tools/04_php-coveralls #79

Workflow file for this run

name: Laravel App
on:
push:
branches:
- master
- develop
pull_request:
branches:
- master
- develop
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build the docker images
run: make build-test
- name: Start the docker images
run: make start-test
- name: Check running containers
run: docker ps -a
- name: Wait for database connection
run: make wait-for-db
- name: Run migrations
run: make drop-migrate
- name: Run seeds
run: make seed
- name: Run test suite
run: make phpunit
- name: Run PHP coding standard
run: make ecs
- name: Run PHP codeSniffer
run: make phpcs
- name: Run PHP copy/paste detector
run: make phpcpd
- name: Run PHP mess detector
run: make phpmd
- name: Run PHPStan static analysis tool
run: make phpstan
- name: Run Phpinsights PHP quality checks
run: make phpinsights
- name: Stop the docker images
run: make stop-test