-
Notifications
You must be signed in to change notification settings - Fork 161
43 lines (32 loc) · 924 Bytes
/
PHP8.3.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
name: "PHP 8.3 Tests"
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: [8.3]
name: PHP${{ matrix.php }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: curl, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, iconv
coverage: none
- name: Install dependencies
run: composer install
- name: Create Environment file and generate app key
run: |
cp .env.example .env
php artisan key:generate
- name: Create database and run migration
run: |
touch database/hydra.sqlite
php artisan migrate
php artisan db:seed
- name: Execute tests
run: vendor/bin/phpunit