-
Notifications
You must be signed in to change notification settings - Fork 1
54 lines (43 loc) · 1.24 KB
/
tests.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
name: Tests
on:
push:
pull_request:
types: [opened]
paths-ignore:
- 'frontend/**'
jobs:
laravel-tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: [ 8.1 ]
steps:
- uses: actions/checkout@v2
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: imagick
- name: Testing PHP version
run: php -v
- name: Install Dependencies
run: |
composer clear-cache
# composer config "http-basic.nova.laravel.com" "${{ secrets.NOVA_USERNAME }}" "${{ secrets.NOVA_PASSWORD }}"
composer install --no-ansi --no-interaction --no-scripts --prefer-dist
- name: Create Database
run: |
mkdir -p database
touch database/database.sqlite
- name: Prepare Laravel Application
run: |
cp .env.testing .env
php artisan key:generate
- name: Directory Permissions
run: chmod -R 777 storage bootstrap/cache
- name: Execute tests (Unit and Feature tests) via PHPUnit
env:
DB_CONNECTION: sqlite
DB_DATABASE: database/database.sqlite
run: composer test