diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 9e9fd1f..c4f4b55 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -1,19 +1,26 @@ name: Tests -on: [ push, pull_request ] +on: + - push + - pull_request jobs: test: runs-on: ubuntu-latest + strategy: fail-fast: true matrix: - php: [ 8.0, 8.1 ] - laravel: [ 8.*, 9.*, 10.* ] - dependency-version: [ prefer-stable ] + php: [8.0, 8.1, '8.2'] + laravel: ['8.*', '9.*', '10.*', '11.*'] + dependency-version: [prefer-stable] exclude: - laravel: 10.* php: 8.0 + - laravel: 11.* + php: 8.0 + - laravel: 11.* + php: 8.1 include: - laravel: 7.* php: 7.2 @@ -30,6 +37,9 @@ jobs: testbench: 7.* - laravel: 10.* testbench: 8.* + - laravel: 11.* + php: '8.2' + testbench: 9.* name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} @@ -56,9 +66,9 @@ jobs: - name: Execute tests run: vendor/bin/phpunit --coverage-clover=coverage.xml - - if: github.event_name == 'push' + - if: "github.event_name == 'push'" name: Run Codacy Coverage Reporter uses: codacy/codacy-coverage-reporter-action@master with: - project-token: ${{ secrets.CODACY_PROJECT_TOKEN }} - coverage-reports: coverage.xml + project-token: ${{ secrets.CODACY_PROJECT_TOKEN }} + coverage-reports: coverage.xml diff --git a/composer.json b/composer.json index daf66fa..569be1c 100644 --- a/composer.json +++ b/composer.json @@ -23,12 +23,12 @@ "require": { "php": "^7.2.5|^8.0", "codezero/browser-locale": "^3.0", - "illuminate/support": "^7.0|^8.0|^9.0|^10.0" + "illuminate/support": "^7.0|^8.0|^9.0|^10.0|^11.0" }, "require-dev": { "mockery/mockery": "^1.3.3", - "orchestra/testbench": "^5.0|^6.0|^7.0|^8.0", - "phpunit/phpunit": "^8.0|^9.0" + "orchestra/testbench": "^5.0|^6.0|^7.0|^8.0|^9.0", + "phpunit/phpunit": "^8.0|^9.0|^10.5" }, "scripts": { "test": "phpunit"