From b5de75189d2a026b321780ccc7a7d36d022598c8 Mon Sep 17 00:00:00 2001 From: Saufi Date: Wed, 13 May 2026 11:53:50 +0800 Subject: [PATCH] retest runner --- .gitea/workflows/ori_ci.yml | 47 ------------------------------------- tests/Pest.php | 1 + 2 files changed, 1 insertion(+), 47 deletions(-) delete mode 100644 .gitea/workflows/ori_ci.yml diff --git a/.gitea/workflows/ori_ci.yml b/.gitea/workflows/ori_ci.yml deleted file mode 100644 index cd4a829..0000000 --- a/.gitea/workflows/ori_ci.yml +++ /dev/null @@ -1,47 +0,0 @@ -name: CI - -on: - push: - branches: - - '**' - pull_request: - branches: - - '**' - -jobs: - test: - name: Tests (PHP 8.5) - runs-on: ubuntu-latest - - steps: - - name: Checkout code - uses: actions/checkout@v4 - - - name: Setup PHP - uses: shivammathur/setup-php@v2 - with: - php-version: '8.5' - extensions: mbstring, dom, curl, sqlite3, pdo_sqlite - coverage: none - - - name: Cache Composer packages - uses: actions/cache@v4 - with: - path: vendor - key: composer-${{ hashFiles('composer.lock') }} - restore-keys: composer- - - - name: Install Composer dependencies - run: composer install --no-interaction --prefer-dist --optimize-autoloader - - - name: Copy environment file - run: cp .env.example .env - - - name: Generate application key - run: php artisan key:generate - - - name: Check code style - run: vendor/bin/pint --test --format github - - - name: Run tests - run: php artisan test --compact diff --git a/tests/Pest.php b/tests/Pest.php index 6885ad5..15c0fdb 100644 --- a/tests/Pest.php +++ b/tests/Pest.php @@ -16,6 +16,7 @@ use Tests\TestCase; pest()->extend(TestCase::class) ->use(RefreshDatabase::class) + ->withoutVite() ->in('Feature'); /*