-
-
Notifications
You must be signed in to change notification settings - Fork 45
73 lines (56 loc) · 2.05 KB
/
laravel.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
name: CI
# You want to run the tests on every push, and for pull requests.
on: [ push, pull_request ]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
max-parallel: 2
matrix:
php-versions: ['8.3','8.4']
name: PHP ${{ matrix.php-versions }}
services:
mysql:
image: mysql:8.0
env:
MYSQL_ALLOW_EMPTY_PASSWORD: yes
MYSQL_DATABASE: testing
ports:
- 3306:3306
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
# Environment variables during project setup and test run.
env:
DB_CONNECTION: mysql
DB_HOST: 127.0.0.1
DB_PORT: 3306
DB_DATABASE: testing
DB_USERNAME: root
DB_PASSWORD: ""
ADMIN_PREFIX: app
IS_LIVE: true
TRIAL_DAYS: 14
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@master
with:
php-version: ${{ matrix.php-versions }}
coverage: xdebug
- name: Validate composer.json and composer.lock
run: composer validate
- name: Copy .env
run: php -r "file_exists('.env') || copy('.env.example', '.env');"
- name: Install Dependencies
run: composer update --no-interaction
- name: Migrate DB
run: php artisan migrate --seed
- name: Generate key
run: php artisan key:generate
- name: Set storage link
run: php artisan storage:link
- name: Directory Permissions
run: chmod -R 777 storage bootstrap/cache
- name: PINT
run: ./vendor/bin/pint
- name: Run test suite
run: ./vendor/bin/pest --parallel