mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-09-02 19:28:55 +00:00
43 lines
1015 B
YAML
43 lines
1015 B
YAML
name: Run tests
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
tests:
|
|
name: Run 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:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Setup PHP
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: '8.2'
|
|
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, bcmath, soap, intl, gd, exif, iconv
|
|
coverage: none
|
|
|
|
- name: Copy env file
|
|
run:
|
|
cp .env.test .env
|
|
|
|
- name: Run composer install
|
|
run: composer install -n --prefer-dist
|
|
|
|
- name: Prepare Laravel Application
|
|
run:
|
|
php artisan key:generate
|
|
|
|
- name: Run tests
|
|
run: php artisan test
|