Skip to content

Instantly share code, notes, and snippets.

@YeeJiaWei
Created February 16, 2022 12:33
Show Gist options
  • Save YeeJiaWei/acd0aa659fe3e45064f60d47aa54dc9a to your computer and use it in GitHub Desktop.
Save YeeJiaWei/acd0aa659fe3e45064f60d47aa54dc9a to your computer and use it in GitHub Desktop.
Laravel Github Action with Mysql
name: Laravel
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
laravel-tests:
runs-on: ubuntu-latest
services:
mysql:
image: mysql:latest
env:
MYSQL_USER: user
MYSQL_PASSWORD: password
MYSQL_ROOT_PASSWORD: rootpassword
MYSQL_DATABASE: laravel
ports:
- 3306
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
steps:
- uses: shivammathur/setup-php@15c43e89cdef867065b0213be354c2841860869e
with:
php-version: '8.0'
- uses: actions/checkout@v2
- name: Start MySql service
run: sudo systemctl start mysql
- 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: Clear Config
run: php artisan config:clear
- name: Run Migration
run: php artisan migrate
env:
DB_PORT: ${{ job.services.mysql.ports[3306] }}
DB_CONNECTION: mysql
DB_DATABASE: laravel
DB_USERNAME: user
DB_PASSWORD: password
- name: Execute tests (Unit and Feature tests) via PHPUnit
run: vendor/bin/phpunit
env:
DB_PORT: ${{ job.services.mysql.ports[3306] }}
DB_CONNECTION: mysql
DB_DATABASE: laravel
DB_USERNAME: user
DB_PASSWORD: password
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment