Skip to content

Bump guzzlehttp/psr7 from 1.7.0 to 1.8.5 #59

Bump guzzlehttp/psr7 from 1.7.0 to 1.8.5

Bump guzzlehttp/psr7 from 1.7.0 to 1.8.5 #59

Workflow file for this run

name: Run Unit and Feature Tests
on:
push:
branches:
- dev
pull_request:
branches: [master]
jobs:
laravel-tests:
name: Start Unit & Feature Configuration and Testing
runs-on: ubuntu-latest
strategy:
matrix:
operating-system: [ubuntu-latest]
php-versions: ['7.3']
services:
# mysql-service Label used to access the service container
mysql:
# Docker Hub image (also with version)
image: mysql:5.7
env:
## Accessing to Github secrets, where you can store your configuration
MYSQL_DATABASE: db_test
MYSQL_USER: root
MYSQL_ROOT_PASSWORD: ${{ secrets.DB_PASSWORD }}
## map the "external" 33306 port with the "internal" 3306
ports:
- 33306:3306
# Set health checks to wait until mysql database has started (it takes some seconds to start)
options: >-
--health-cmd="mysqladmin ping"
--health-interval=10s
--health-timeout=5s
--health-retries=3
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup and Install PHP Action
uses: shivammathur/[email protected]
with:
php-version: ${{ matrix.php-versions }}
- name: Check PHP Version
run: php -v
- name: Copy .env
run: php -r "file_exists('.env') || copy('.env.example', '.env');"
- name: Install Dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
- name: Generate key
run: php artisan key:generate
- name: Directory Permissions
run: chmod -R 777 storage bootstrap/cache
- name: Setup Migrate Database & Execute tests via PHPUnit
env:
DB_CONNECTION: mysql
DB_DATABASE: db_test
DB_PORT: 33306
DB_USER: root
DB_PASSWORD: ${{ secrets.DB_PASSWORD }}
run: |
php artisan migrate
vendor/bin/phpunit