setup-php/examples/lumen-mysql.yml

90 lines
3.0 KiB
YAML
Raw Normal View History

# GitHub Action for Lumen with MySQL and Redis
name: Testing Lumen with MySQL
on: [push, pull_request]
jobs:
lumen:
name: Lumen (PHP ${{ matrix.php-versions }})
runs-on: ubuntu-latest
env:
DB_DATABASE: lumen
DB_USERNAME: root
DB_PASSWORD: password
BROADCAST_DRIVER: log
CACHE_DRIVER: redis
QUEUE_CONNECTION: redis
SESSION_DRIVER: redis
2022-04-03 05:54:07 +07:00
# Docs: https://docs.github.com/en/actions/using-containerized-services
services:
mysql:
2021-12-15 18:19:10 +07:00
image: mysql:latest
env:
MYSQL_ALLOW_EMPTY_PASSWORD: false
MYSQL_ROOT_PASSWORD: password
MYSQL_DATABASE: lumen
ports:
2020-01-08 13:05:32 +07:00
- 3306/tcp
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
2021-12-15 18:19:10 +07:00
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:
2021-12-15 18:19:10 +07:00
php-versions: ['7.4', '8.0', '8.1']
steps:
- name: Checkout
2023-09-09 17:53:40 +07:00
uses: actions/checkout@v4
2021-12-15 18:19:10 +07:00
# Docs: https://github.com/shivammathur/setup-php
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: mbstring, dom, fileinfo, mysql
2021-12-15 18:19:10 +07:00
coverage: xdebug
2022-04-03 05:54:07 +07:00
# Local MySQL service in GitHub hosted environments is disabled by default.
# If you are using it instead of service containers, make sure you start it.
# - name: Start mysql service
# run: sudo systemctl start mysql.service
2021-12-15 18:19:10 +07:00
- name: Get composer cache directory
id: composer-cache
2022-10-12 17:56:11 +07:00
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
2021-12-15 18:19:10 +07:00
- name: Cache composer dependencies
uses: actions/cache@v3
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-
2021-12-15 18:19:10 +07:00
- name: Install Composer dependencies
run: |
2020-06-19 12:22:35 +07:00
composer install --no-progress --prefer-dist --optimize-autoloader
composer require predis/predis illuminate/redis
2021-12-15 18:19:10 +07:00
- name: Prepare the application
run: php -r "file_exists('.env') || copy('.env.example', '.env');"
2021-12-15 18:19:10 +07:00
- name: Register Redis as service provider
run: sed -i '$i\$app->register(Illuminate\\Redis\\RedisServiceProvider::class);' bootstrap/app.php
2021-12-15 18:19:10 +07:00
- name: Run Migration
run: php artisan migrate -v
env:
DB_PORT: ${{ job.services.mysql.ports['3306'] }}
2020-01-08 13:05:32 +07:00
REDIS_PORT: ${{ job.services.redis.ports['6379'] }}
2021-12-15 18:19:10 +07:00
- name: Test with phpunit
run: vendor/bin/phpunit --coverage-text
env:
2020-01-08 13:05:32 +07:00
DB_PORT: ${{ job.services.mysql.ports['3306'] }}
2021-12-15 18:19:10 +07:00
REDIS_PORT: ${{ job.services.redis.ports['6379'] }}