mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-03-20 20:31:02 -05:00
66 lines
2.0 KiB
YAML
66 lines
2.0 KiB
YAML
name: UNIT3D Test (PHPUnit)
|
|
on: [push, pull_request]
|
|
jobs:
|
|
tests:
|
|
strategy:
|
|
matrix:
|
|
operating-system:
|
|
- ubuntu-22.04
|
|
php-version:
|
|
- '8.2'
|
|
name: php ${{ matrix.php-version }} on ${{ matrix.operating-system }}
|
|
services:
|
|
mysql:
|
|
image: mysql:8.0
|
|
env:
|
|
MYSQL_ALLOW_EMPTY_PASSWORD: yes
|
|
MYSQL_DATABASE: unit3d
|
|
ports:
|
|
- 3306:3306
|
|
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
|
|
redis:
|
|
image: redis:5.0
|
|
ports:
|
|
- 6379:6379
|
|
options: >-
|
|
--health-cmd "redis-cli ping"
|
|
--health-interval 10s
|
|
--health-timeout 5s
|
|
--health-retries 5
|
|
runs-on: ${{ matrix.operating-system }}
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Setup PHP 8.2
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: ${{ matrix.php-version }}
|
|
extensions: bcmath, ctype, dom, fileinfo, json, libxml, mbstring, openssl, pdo, tokenizer, xml, zip
|
|
coverage: none
|
|
- name: Prepare The Laravel Environment
|
|
run: cp .env.example .env
|
|
- name: Configure NPM
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: '18.x'
|
|
- name: Install Composer Dependencies
|
|
env:
|
|
COMPOSER_AUTH: ${{ secrets.COMPOSER_AUTH }}
|
|
run: composer install --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
|
|
- name: Install NPM Dependencies
|
|
run: npm install
|
|
- name: Build Assets Via Mix
|
|
run: npx mix -p
|
|
- name: Generate Application Key
|
|
run: php artisan key:generate
|
|
- name: Clear Application Cache
|
|
run: php artisan optimize:clear
|
|
- name: Run PHPUnit Tests
|
|
run: php artisan test --parallel
|
|
env:
|
|
DB_CONNECTION: mysql
|
|
DB_PORT: ${{ job.services.mysql.ports['3306'] }}
|
|
DB_USERNAME: root
|
|
DB_DATABASE: unit3d
|
|
DB_PASSWORD: null
|