-
Notifications
You must be signed in to change notification settings - Fork 1
59 lines (51 loc) · 1.77 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
55
56
57
58
59
name: Tests
on:
pull_request:
push:
defaults:
run:
working-directory: ./
jobs:
run:
runs-on: ubuntu-latest
strategy:
matrix:
php: [8.2]
laravel: [10]
phpunit-versions: ["latest"]
name: PHP:${{ matrix.php }} / Laravel:${{ matrix.laravel }}
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Setup PHP, with composer and extensions
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: bcmath, mbstring, intl, amqp, dba, pdo, sqlite, pdo_sqlite
tools: composer:v2
coverage: none
ini-values: error_reporting=E_ALL
- name: Set Laravel Version
run: composer require "laravel/framework:^${{ matrix.laravel }}" --no-update
- name: Get composer cache directory
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
- name: Cache composer dependencies
uses: actions/cache@v2
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: dependencies-laravel-${{ matrix.laravel }}-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}
restore-keys: dependencies-laravel-${{ matrix.laravel }}-php-${{ matrix.php }}-composer-
- name: Install dependencies
uses: nick-fields/retry@v2
with:
timeout_minutes: 5
max_attempts: 5
command: composer update --prefer-dist --no-interaction --no-progress
- name: Execute tests (Unit and Feature tests) via Pest
env:
APP_ENV: testing
DB_DATABASE: ":memory:"
PAYMENT_DRIVER: mollie
MOLLIE_API_KEY: test_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
run: composer test