From 5c3657b2d5a8b84ea95b20f5a61b2da6048839d1 Mon Sep 17 00:00:00 2001 From: Shift Date: Thu, 29 Feb 2024 14:31:44 +0000 Subject: [PATCH 1/2] Bump dependencies for Laravel 11 --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index a0db8e5..236636d 100644 --- a/composer.json +++ b/composer.json @@ -24,15 +24,15 @@ "require": { "php": "^8.0|^8.1|^8.2", "guzzlehttp/guzzle": "^7.5", - "illuminate/support": "^8.0|^9.0|^10.0", + "illuminate/support": "^8.0|^9.0|^10.0|^11.0", "mike42/escpos-php": "^4.0", "spatie/laravel-package-tools": "^1.2|^1.13" }, "require-dev": { "laravel/pint": "^1.5", "mockery/mockery": ">=1.4", - "orchestra/testbench": "^6.0|^7.0|^8.0", - "pestphp/pest": "^1.20", + "orchestra/testbench": "^6.0|^7.0|^8.0|^9.0", + "pestphp/pest": "^1.20|^2.34", "pestphp/pest-plugin-parallel": "^1.0", "php-http/socket-client": "^2.1", "psr/http-client": "^1.0", From 5280f08dde084a72ab14abf40a78e6dfcc2c3f51 Mon Sep 17 00:00:00 2001 From: Shift Date: Thu, 29 Feb 2024 14:31:44 +0000 Subject: [PATCH 2/2] Update GitHub Actions for Laravel 11 --- .github/workflows/run-tests.yml | 111 +++++++++++++++++--------------- 1 file changed, 58 insertions(+), 53 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 6328968..232f4ff 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -1,65 +1,70 @@ name: Tests on: - push: - paths-ignore: - - '**.md' - pull_request: - paths-ignore: - - '**.md' + push: + paths-ignore: + - **.md + pull_request: + paths-ignore: + - **.md jobs: - test: - runs-on: ubuntu-latest - strategy: - fail-fast: true - matrix: - php: [8.2, 8.1] - laravel: [10.*, 9.*, 8.*] - stability: [prefer-lowest, prefer-stable] - include: - - laravel: 10.* - testbench: 8.* - - laravel: 9.* - testbench: 7.* - - laravel: 8.* - testbench: ^6.23 - exclude: - - laravel: 9.* - php: 8.2 - stability: prefer-lowest - - laravel: 8.* - php: 8.2 - stability: prefer-lowest + test: + runs-on: ubuntu-latest - name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} + strategy: + fail-fast: true + matrix: + php: [8.2, 8.1] + laravel: ['8.*', '9.*', '10.*', '11.*'] + stability: [prefer-lowest, prefer-stable] + include: + - laravel: 10.* + testbench: 8.* + - laravel: 9.* + testbench: 7.* + - laravel: 8.* + testbench: ^6.23 + - laravel: 11.* + testbench: 9.* + exclude: + - laravel: 9.* + php: 8.2 + stability: prefer-lowest + - laravel: 8.* + php: 8.2 + stability: prefer-lowest + - laravel: 11.* + php: 8.1 - steps: - - name: Checkout code - uses: actions/checkout@v3 + name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - - name: Setup PHP - uses: shivammathur/setup-php@v2 - with: - php-version: ${{ matrix.php }} - extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo - coverage: none + steps: + - name: Checkout code + uses: actions/checkout@v3 - - name: Setup problem matchers - run: | - echo "::add-matcher::${{ runner.tool_cache }}/php.json" - echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: ${{ matrix.php }} + extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo + coverage: none - - name: Install dependencies - run: | - composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update --ignore-platform-reqs - composer update --${{ matrix.stability }} --prefer-dist --no-interaction --ignore-platform-reqs + - name: Setup problem matchers + run: | + echo "::add-matcher::${{ runner.tool_cache }}/php.json" + echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" - - name: List Installed Dependencies - run: composer show -D + - name: Install dependencies + run: | + composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update --ignore-platform-reqs + composer update --${{ matrix.stability }} --prefer-dist --no-interaction --ignore-platform-reqs - - name: Execute tests - run: vendor/bin/pest -p - env: - PRINT_NODE_API_KEY: ${{ secrets.PRINT_NODE_API_KEY }} - PRINT_NODE_ID: ${{ secrets.PRINT_NODE_ID }} + - name: List Installed Dependencies + run: composer show -D + + - name: Execute tests + run: vendor/bin/pest -p + env: + PRINT_NODE_API_KEY: ${{ secrets.PRINT_NODE_API_KEY }} + PRINT_NODE_ID: ${{ secrets.PRINT_NODE_ID }}