Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 13 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
php-version: '8.4'
extensions: pdo_sqlite, sqlite3, sodium, openssl, mbstring, intl
tools: composer:v2
coverage: none
Expand All @@ -34,7 +34,13 @@ jobs:
restore-keys: composer-

- name: Install dependencies
run: composer install --no-progress --prefer-dist --no-interaction
run: composer install --no-progress --prefer-dist --no-interaction --no-scripts

- name: Prepare app (PHPStan boot-tet Laravel und braucht .env + storage-Pfade)
run: |
cp .env.example .env
mkdir -p storage/framework/cache storage/framework/sessions storage/framework/views storage/logs bootstrap/cache
php artisan key:generate --ansi

- name: Pint (Code-Style)
run: vendor/bin/pint --test
Expand All @@ -51,7 +57,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
php-version: '8.4'
extensions: pdo_sqlite, sqlite3, sodium, openssl, mbstring, intl
tools: composer:v2
coverage: none
Expand All @@ -64,12 +70,13 @@ jobs:
restore-keys: composer-

- name: Install dependencies
run: composer install --no-progress --prefer-dist --no-interaction
run: composer install --no-progress --prefer-dist --no-interaction --no-scripts

- name: Prepare app
run: |
cp .env.example .env || true
php artisan key:generate --ansi || true
cp .env.example .env
mkdir -p storage/framework/cache storage/framework/sessions storage/framework/views storage/logs bootstrap/cache
php artisan key:generate --ansi

- name: Run PHPUnit
run: vendor/bin/phpunit --no-coverage
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
Expand Down
Empty file added tests/Unit/.gitkeep
Empty file.
Loading