diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6870ae0..592c81c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,13 +1,18 @@ name: CI laravel-ovh -on: [push, pull_request] + +on: + - push + - pull_request + jobs: test: runs-on: ubuntu-latest + strategy: fail-fast: true matrix: - php: [8.1] - illuminate: [10.*] + php: [8.1, '8.2'] + illuminate: ['10.*'] dependency-version: [prefer-stable] name: P${{ matrix.php }} - L${{ matrix.illuminate }} - ${{ matrix.dependency-version }} @@ -19,6 +24,7 @@ jobs: - name: Detect Composer Cache Directory id: composer-cache run: echo "::set-output name=dir::$(composer config cache-files-dir)" + - name: Setup Composer Cache uses: actions/cache@v2 with: