setup-php/examples/laravel-postgres.yml

85 lines
2.7 KiB
YAML
Raw Normal View History

2019-10-10 19:17:17 +07:00
# GitHub Action for Laravel with PostgreSQL and Redis
2019-10-04 23:16:54 +07:00
name: Testing Laravel with PostgreSQL
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:
2019-10-03 17:43:34 +07:00
BROADCAST_DRIVER: log
CACHE_DRIVER: redis
QUEUE_CONNECTION: redis
SESSION_DRIVER: redis
2019-10-05 08:14:08 +07:00
DB_CONNECTION: pgsql
DB_HOST: localhost
DB_PASSWORD: postgres
DB_USERNAME: postgres
DB_DATABASE: postgres
2019-10-03 17:43:34 +07:00
services:
postgres:
2021-12-15 18:19:10 +07:00
image: postgres:latest
2019-10-03 17:43:34 +07:00
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
2019-10-03 17:43:34 +07:00
ports:
- 5432/tcp
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 3
2021-12-15 18:19:10 +07:00
2019-10-03 17:43:34 +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']
2019-10-03 17:43:34 +07:00
steps:
- name: Checkout
2020-01-02 00:06:25 +07:00
uses: actions/checkout@v2
2021-12-15 18:19:10 +07:00
# Docs: https://github.com/shivammathur/setup-php
- name: Setup PHP
uses: shivammathur/setup-php@v2
2019-10-03 17:43:34 +07:00
with:
php-version: ${{ matrix.php-versions }}
extensions: mbstring, dom, fileinfo, pgsql
2021-12-15 18:19:10 +07:00
coverage: xdebug
- name: Get composer cache directory
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
2021-12-15 18:19:10 +07:00
- name: Cache composer dependencies
2020-05-30 12:57:44 +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-
2021-12-15 18:19:10 +07:00
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
2021-12-15 18:19:10 +07:00
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
2021-12-15 18:19:10 +07:00
2019-10-03 17:43:34 +07:00
- name: Clear Config
run: php artisan config:clear
2021-12-15 18:19:10 +07:00
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.postgres.ports[5432] }}
2020-01-08 13:05:32 +07:00
REDIS_PORT: ${{ job.services.redis.ports['6379'] }}
2021-12-15 18:19:10 +07:00
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.postgres.ports[5432] }}
2021-12-15 18:19:10 +07:00
REDIS_PORT: ${{ job.services.redis.ports['6379'] }}