mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-31 02:08:57 +00:00
54 lines
1.3 KiB
YAML
54 lines
1.3 KiB
YAML
name: Laravel
|
|
|
|
on:
|
|
push:
|
|
branches: [master, dev]
|
|
pull_request:
|
|
branches: [master, dev]
|
|
|
|
jobs:
|
|
laravel-tests:
|
|
runs-on: ubuntu-latest
|
|
services:
|
|
mysql:
|
|
image: mariadb:10
|
|
env:
|
|
MYSQL_ALLOW_EMPTY_PASSWORD: yes
|
|
MYSQL_DATABASE: TEST
|
|
MYSQL_USER: TEST
|
|
MYSQL_PASSWORD: TEST
|
|
ports:
|
|
- 3306:3306
|
|
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
|
|
|
|
steps:
|
|
- name: Setup PHP
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: '7.4'
|
|
extensions: gd, intl, memcached, sodium
|
|
composer: v2
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Copy .env
|
|
run: cp .env.test .env
|
|
|
|
- name: Install Dependencies
|
|
run: composer install --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: Execute tests (Unit and Feature tests) via PHPUnit
|
|
env:
|
|
DB_CONNECTION: mysql
|
|
DB_DATABASE: TEST
|
|
run: |
|
|
mkdir -p /home/runner/work/newznab-tmux/newznab-tmux/tests/Unit
|
|
mkdir -p /home/runner/work/newznab-tmux/newznab-tmux/tests/build/logs
|
|
vendor/bin/phpunit
|