diff --git a/.github/workflows/tests-on-windows.yml b/.github/workflows/tests-on-windows.yml index 81e1bd4..36f80fa 100644 --- a/.github/workflows/tests-on-windows.yml +++ b/.github/workflows/tests-on-windows.yml @@ -15,6 +15,7 @@ jobs: php: - 8.1 - 8.2 + - 8.3 dependencies: - "highest" - "lowest" @@ -97,51 +98,3 @@ jobs: run: vendor/bin/phpunit env: TESTBENCH_CONVERT_DEPRECATIONS_TO_EXCEPTIONS: false - - tests-on-laravel8: - runs-on: ${{ matrix.os }} - continue-on-error: ${{ matrix.experimental }} - strategy: - matrix: - os: - - "windows-latest" - php: - - 7.3 - - 7.4 - - '8.0' - - 8.1 - dependencies: - - "highest" - - "lowest" - laravel: - - "8.x" - experimental: - - false - - name: Laravel ${{ matrix.laravel }} on PHP${{ matrix.php }}-${{ matrix.os }} (${{ matrix.dependencies }}) - - steps: - - name: Checkout code - uses: actions/checkout@v3 - - - name: Setup PHP - uses: shivammathur/setup-php@v2 - with: - php-version: ${{ matrix.php }} - extensions: dom, curl, libxml, mbstring, zip, pcntl, sqlite3, pdo_sqlite, bcmath, fileinfo - coverage: none - - - name: Install Laravel Framework ${{ matrix.laravel }} - run: | - composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update - - - name: Install dependencies - uses: "ramsey/composer-install@v2" - with: - composer-options: "--prefer-dist --no-cache" - dependency-versions: "${{ matrix.dependencies }}" - - - name: Execute tests - run: vendor/bin/phpunit - env: - TESTBENCH_CONVERT_DEPRECATIONS_TO_EXCEPTIONS: false diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 56c3b70..99aafa1 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -16,6 +16,7 @@ jobs: php: - 8.1 - 8.2 + - 8.3 dependencies: - "highest" - "lowest" @@ -94,49 +95,3 @@ jobs: - name: Execute tests run: vendor/bin/phpunit - - tests-on-laravel8: - runs-on: ${{ matrix.os }} - continue-on-error: ${{ matrix.experimental }} - strategy: - matrix: - os: - - "ubuntu-latest" - php: - - 7.3 - - 7.4 - - '8.0' - - 8.1 - dependencies: - - "highest" - - "lowest" - laravel: - - "8.x" - experimental: - - false - - name: Laravel ${{ matrix.laravel }} on PHP${{ matrix.php }}-${{ matrix.os }} (${{ matrix.dependencies }}) - - steps: - - name: Checkout code - uses: actions/checkout@v3 - - - name: Setup PHP - uses: shivammathur/setup-php@v2 - with: - php-version: ${{ matrix.php }} - extensions: dom, curl, libxml, mbstring, zip, pcntl, sqlite3, pdo_sqlite, bcmath, fileinfo - coverage: none - - - name: Install Laravel Framework ${{ matrix.laravel }} - run: | - composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update - - - name: Install dependencies - uses: "ramsey/composer-install@v2" - with: - composer-options: "--prefer-dist --no-cache" - dependency-versions: "${{ matrix.dependencies }}" - - - name: Execute tests - run: vendor/bin/phpunit