-
Notifications
You must be signed in to change notification settings - Fork 0
64 lines (61 loc) · 1.98 KB
/
main.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
name: Run Unit and Feature Tests
on:
push:
branches:
- dev
pull_request:
branches: [master]
jobs:
laravel-tests:
name: Start Unit & Feature Configuration and Testing
runs-on: ubuntu-latest
strategy:
matrix:
operating-system: [ubuntu-latest]
php-versions: ['7.3']
services:
# mysql-service Label used to access the service container
mysql:
# Docker Hub image (also with version)
image: mysql:5.7
env:
## Accessing to Github secrets, where you can store your configuration
MYSQL_DATABASE: db_test
MYSQL_USER: root
MYSQL_ROOT_PASSWORD: ${{ secrets.DB_PASSWORD }}
## map the "external" 33306 port with the "internal" 3306
ports:
- 33306:3306
# Set health checks to wait until mysql database has started (it takes some seconds to start)
options: >-
--health-cmd="mysqladmin ping"
--health-interval=10s
--health-timeout=5s
--health-retries=3
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup and Install PHP Action
uses: shivammathur/[email protected]
with:
php-version: ${{ matrix.php-versions }}
- name: Check PHP Version
run: php -v
- name: Copy .env
run: php -r "file_exists('.env') || copy('.env.example', '.env');"
- name: Install Dependencies
run: composer install -q --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: Setup Migrate Database & Execute tests via PHPUnit
env:
DB_CONNECTION: mysql
DB_DATABASE: db_test
DB_PORT: 33306
DB_USER: root
DB_PASSWORD: ${{ secrets.DB_PASSWORD }}
run: |
php artisan migrate
vendor/bin/phpunit