mirror of
https://github.com/sp-tarkov/forge.git
synced 2025-02-12 20:20:41 -05:00
Would you please just connect!
This commit is contained in:
parent
11a7a91033
commit
7386778ff2
6
.env.ci
6
.env.ci
@ -9,11 +9,11 @@ LOG_DEPRECATIONS_CHANNEL=null
|
|||||||
LOG_LEVEL=emergency
|
LOG_LEVEL=emergency
|
||||||
|
|
||||||
DB_CONNECTION=mysql
|
DB_CONNECTION=mysql
|
||||||
DB_HOST=127.0.0.1
|
DB_HOST=mysql
|
||||||
DB_PORT=3306
|
DB_PORT=33306
|
||||||
DB_DATABASE=testing
|
DB_DATABASE=testing
|
||||||
DB_USERNAME=root
|
DB_USERNAME=root
|
||||||
DB_PASSWORD=password
|
DB_PASSWORD=
|
||||||
|
|
||||||
FILESYSTEM_DISK=local
|
FILESYSTEM_DISK=local
|
||||||
QUEUE_CONNECTION=sync
|
QUEUE_CONNECTION=sync
|
||||||
|
15
.github/workflows/general.yaml
vendored
15
.github/workflows/general.yaml
vendored
@ -100,19 +100,14 @@ jobs:
|
|||||||
|
|
||||||
laravel-tests:
|
laravel-tests:
|
||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-24.04
|
||||||
env:
|
|
||||||
DB_DATABASE: testing
|
|
||||||
DB_USERNAME: root
|
|
||||||
DB_PASSWORD: password
|
|
||||||
services:
|
services:
|
||||||
mysql:
|
mysql:
|
||||||
image: mysql:8.3
|
image: mysql:8.3
|
||||||
env:
|
env:
|
||||||
MYSQL_ALLOW_EMPTY_PASSWORD: false
|
MYSQL_ALLOW_EMPTY_PASSWORD: yes
|
||||||
MYSQL_ROOT_PASSWORD: password
|
|
||||||
MYSQL_DATABASE: testing
|
MYSQL_DATABASE: testing
|
||||||
ports:
|
ports:
|
||||||
- 3306/tcp
|
- 33306:3306
|
||||||
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
|
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
@ -122,7 +117,6 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
php-version: '8.3'
|
php-version: '8.3'
|
||||||
extensions: mbstring, dom, fileinfo
|
extensions: mbstring, dom, fileinfo
|
||||||
tools: pint
|
|
||||||
coverage: none
|
coverage: none
|
||||||
- name: Configure Laravel Nova Authentication
|
- name: Configure Laravel Nova Authentication
|
||||||
shell: bash
|
shell: bash
|
||||||
@ -161,7 +155,10 @@ jobs:
|
|||||||
- name: Run Migrations
|
- name: Run Migrations
|
||||||
run: php artisan migrate -v
|
run: php artisan migrate -v
|
||||||
env:
|
env:
|
||||||
DB_PORT: ${{ job.services.mysql.ports['3306'] }}
|
DB_CONNECTION: mysql
|
||||||
|
DB_DATABASE: testing
|
||||||
|
DB_PORT: 33306
|
||||||
|
DB_USER: root
|
||||||
- name: Link Storage
|
- name: Link Storage
|
||||||
run: php artisan storage:link
|
run: php artisan storage:link
|
||||||
- name: Serve Application
|
- name: Serve Application
|
||||||
|
Loading…
x
Reference in New Issue
Block a user