Skip to content

Commit

Permalink
ci test
Browse files Browse the repository at this point in the history
  • Loading branch information
anilkumarthakur60 committed May 1, 2024
1 parent 5d7ec14 commit c596539
Showing 1 changed file with 25 additions and 5 deletions.
30 changes: 25 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,26 @@ jobs:

strategy:
matrix:
php: [8.1, 8.2, 8.3]
php: [8.0, 8.1, 8.2, 8.3]
laravel: ["8.*", "9.*", "10.*", "11.*"]
exclude:
- laravel: "8.*"
php: [8.2, 8.3]
php: 8.2
- laravel: "8.*"
php: 8.3

- laravel: "9.*"
php: [8.3]
php: 8.3

- laravel: "10.*"
php: [8.1]
php: 8.0

- laravel: "11.*"
php: 8.0
- laravel: "11.*"
php: [8.1, 8.2]
php: 8.1


name: running L-${{ matrix.laravel }} on PHP-${{ matrix.php }}


Expand All @@ -47,6 +56,17 @@ jobs:
php-version: ${{ matrix.php }}
extensions: intl, zip, pdo, pdo_mysql, pcntl, bcmath, gd, soap, xsl, xml, xmlrpc, mbstring, curl, json, dom, iconv, simplexml, xmlwriter, xmlreader, phar, posix, ctype, tokenizer, session, fileinfo, filter, hash, openssl, pcre, SPL, Reflection, calendar, exif, gettext, sockets, standard, date, libxml, zlib
coverage: none

- name: Cache Composer dependencies
uses: actions/cache@v4
with:
path: |
~/.composer/cache/files
~/.cache/composer/files
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-composer-
- name: Install dependencies
run: composer install --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist

Expand Down

0 comments on commit c596539

Please sign in to comment.