setup-php/examples/laravel-mysql.yml

74 lines
2.7 KiB
YAML
Raw Normal View History

2019-10-10 19:17:17 +07:00
# GitHub Action for Laravel with MySQL and Redis
name: Testing Laravel with MySQL
2019-10-03 17:43:34 +07:00
on: [push, pull_request]
jobs:
laravel:
2019-10-08 19:42:54 +07:00
name: Laravel (PHP ${{ matrix.php-versions }})
2019-10-03 17:43:34 +07:00
runs-on: ubuntu-latest
env:
DB_DATABASE: laravel
DB_USERNAME: root
2019-10-03 17:43:34 +07:00
DB_PASSWORD: password
BROADCAST_DRIVER: log
CACHE_DRIVER: redis
QUEUE_CONNECTION: redis
SESSION_DRIVER: redis
services:
mysql:
image: mysql:5.7
env:
MYSQL_ALLOW_EMPTY_PASSWORD: false
MYSQL_ROOT_PASSWORD: password
MYSQL_DATABASE: laravel
ports:
2020-01-08 13:05:32 +07:00
- 3306/tcp
2019-10-03 17:43:34 +07:00
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
redis:
image: redis
ports:
- 6379/tcp
options: --health-cmd="redis-cli ping" --health-interval=10s --health-timeout=5s --health-retries=3
strategy:
fail-fast: false
matrix:
2019-10-08 19:42:54 +07:00
php-versions: ['7.2', '7.3', '7.4']
2019-10-03 17:43:34 +07:00
steps:
- name: Checkout
2020-01-02 00:06:25 +07:00
uses: actions/checkout@v2
- name: Setup PHP, with composer and extensions
2019-11-28 06:47:56 +07:00
uses: shivammathur/setup-php@v1 #https://github.com/shivammathur/setup-php
2019-10-03 17:43:34 +07:00
with:
php-version: ${{ matrix.php-versions }}
extensions: mbstring, dom, fileinfo, mysql
2019-10-08 19:42:54 +07:00
coverage: xdebug #optional
2020-03-01 07:50:48 +07:00
- name: Start mysql service
run: sudo /etc/init.d/mysql start
- name: Get composer cache directory
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
- name: Cache composer dependencies
2020-06-08 08:39:31 +07:00
uses: actions/cache@v2
with:
path: ${{ steps.composer-cache.outputs.dir }}
2019-12-28 01:53:51 +07:00
# Use composer.json for key, if composer.lock is not committed.
# key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-
2019-10-03 17:43:34 +07:00
- name: Install Composer dependencies
2020-06-19 12:22:35 +07:00
run: composer install --no-progress --prefer-dist --optimize-autoloader
2019-10-03 17:43:34 +07:00
- name: Prepare the application
run: |
2019-10-08 19:42:54 +07:00
php -r "file_exists('.env') || copy('.env.example', '.env');"
2019-10-03 17:43:34 +07:00
php artisan key:generate
- name: Clear Config
2019-10-08 19:42:54 +07:00
run: php artisan config:clear
2019-10-03 17:43:34 +07:00
- name: Run Migration
run: php artisan migrate -v
2019-10-08 19:42:54 +07:00
env:
DB_PORT: ${{ job.services.mysql.ports['3306'] }}
2020-01-08 13:05:32 +07:00
REDIS_PORT: ${{ job.services.redis.ports['6379'] }}
2019-10-08 19:42:54 +07:00
- name: Test with phpunit
run: vendor/bin/phpunit --coverage-text
2019-10-03 17:43:34 +07:00
env:
2020-01-08 13:05:32 +07:00
DB_PORT: ${{ job.services.mysql.ports['3306'] }}
REDIS_PORT: ${{ job.services.redis.ports['6379'] }}