Skip to content

Commit

Permalink
Merge pull request #1 from umutphp/master
Browse files Browse the repository at this point in the history
  • Loading branch information
serkansyalcin committed Sep 10, 2024
2 parents 061b3fe + ea445f5 commit faaf112
Show file tree
Hide file tree
Showing 2 changed files with 98 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/composer-install.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Test In All PHP Versions

on: [push, pull_request]

jobs:
phpunit:
name: PHPUnit
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
php-version:
- "7.4"
- "8.0"
- "8.1"
- "8.2"
- "8.3"
dependency-versions:
- "lowest"
- "highest"

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup PHP
uses: shivammathur/setup-php@2.27.1
with:
php-version: ${{ matrix.php-version }}
coverage: none

- name: Install composer dependencies
uses: ramsey/composer-install@v2
with:
dependency-versions: ${{ matrix.dependency-versions }}

#- name: Run PHPUnit
# run: vendor/bin/phpunit tests
59 changes: 59 additions & 0 deletions .github/workflows/laravel-compability.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
name: laravel-compability

on: [push, pull_request]


jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
php: [7.4, 8.0, 8.1, 8.2, 8.3]
laravel: [8.*, 9.*, 10.*, 11.*]
dependency-version: [prefer-lowest, prefer-stable]
exclude:
- laravel: 8.*
php: 8.2
- laravel: 8.*
php: 8.3
- laravel: 9.*
php: 7.4
- laravel: 10.*
php: 7.4
- laravel: 10.*
php: 8.0
- laravel: 11.*
php: 7.4
- laravel: 11.*
php: 8.0
- laravel: 11.*
php: 8.1

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Cache dependencies
uses: actions/cache@v1
with:
path: ~/.composer/cache/files
key: dependencies-laravel-${{ matrix.laravel }}-php-${{ matrix.php }}-composer-${{ hashFiles('composer.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
coverage: none

- name: Install dependencies
run: |
composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction --no-suggest
#- name: Execute tests
# run: vendor/bin/phpunit

0 comments on commit faaf112

Please sign in to comment.