diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d2f4250..e78d2aa 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,23 +9,35 @@ on: jobs: tests: - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 strategy: fail-fast: true matrix: - php: [7.3, 7.4, 8.0, 8.1] - laravel: [6.0, 7.0, 8.0, 9.0] + php: [7.3, 7.4, 8.0, 8.1, 8.2] + laravel: [6.0, 7.0, 8.0, 9.0, 10.0] exclude: - php: 7.3 - laravel: 9 + laravel: 9.0 - php: 7.4 - laravel: 9 + laravel: 9.0 + - php: 7.3 + laravel: 10.0 + - php: 7.4 + laravel: 10.0 + - php: 8.0 + laravel: 10.0 + - php: 8.2 + laravel: 6.0 + - php: 8.2 + laravel: 7.0 + - php: 8.2 + laravel: 8.0 name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setup PHP uses: shivammathur/setup-php@v2 diff --git a/composer.json b/composer.json index 1a563db..48576ef 100644 --- a/composer.json +++ b/composer.json @@ -16,7 +16,7 @@ "require": { "php": "^7.3|^8.0", - "illuminate/support": "^6.0|^7.0|^8.0|^9.0", + "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0", "joelbutcher/facebook-graph-sdk": "^6.0.0", "symfony/http-client": "^5.3|^6.0" },