From 444fdd6f6e79d80ae444a8c3c4a86a7c0a48ff16 Mon Sep 17 00:00:00 2001 From: Jannes Behrens Date: Mon, 17 Jul 2023 10:54:39 +0200 Subject: [PATCH] wip --- .github/workflows/tests.yml | 46 +++---------------------------------- 1 file changed, 3 insertions(+), 43 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 02837f3..1a9f4c5 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -13,8 +13,8 @@ jobs: strategy: fail-fast: true matrix: - php: [7.4, 8.0] - laravel: [7.*, 8.*] + php: [8.0] + laravel: [8.*] stability: [prefer-lowest, prefer-stable] name: @@ -49,44 +49,4 @@ jobs: composer update --${{ matrix.stability }} --prefer-dist --no-interaction - name: Run PHP tests via PHPUnit - run: vendor/bin/phpunit - windows_tests: - runs-on: windows-latest - strategy: - fail-fast: true - matrix: - php: [7.4] - laravel: [7.*] - stability: [prefer-stable] - include: - - laravel: 7.* - name: p ${{ matrix.php }} - l ${{ matrix.laravel }} - Windows - steps: - - name: Checkout code - uses: actions/checkout@v2 - - - name: Cache dependencies - uses: actions/cache@v1 - with: - path: ~/.composer/cache/files - key: - dependencies-laravel-${{ matrix.laravel }}-php-${{ - matrix.php }}-composer-${{ hashFiles('composer.json') }} - - - name: Setup PHP - uses: shivammathur/setup-php@v2 - with: - php-version: ${{ matrix.php }} - extensions: - dom, curl, libxml, mbstring, zip, pdo, sqlite, pdo_sqlite, - bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo - tools: composer:v2 - coverage: none - - - name: Install dependencies - run: | - composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update - composer update --${{ matrix.stability }} --prefer-dist --no-interaction - - - name: Run PHP tests via PHPUnit - run: vendor/bin/phpunit + run: vendor/bin/phpunit \ No newline at end of file