Skip to content

Commit

Permalink
Merge pull request #2 from square1-io/rework-test-matrix
Browse files Browse the repository at this point in the history
Rework test matrix
  • Loading branch information
conroyp authored Apr 25, 2024
2 parents c5fa9cf + 5610cc2 commit e58680d
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 27 deletions.
55 changes: 38 additions & 17 deletions .github/workflows/laravel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,23 +13,44 @@ jobs:

strategy:
matrix:
php-versions: ['8.2', '8.3'] # Adjust PHP versions as needed
laravel-versions: ['^8.0', '^9.0', '^10.0', '^11.0'] # Adjust Laravel versions as needed
php: [8.0, 8.1, 8.2]
laravel: ['9.*', '10.*', '11.*']
dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: 10.*
testbench: 8.*
phpunit: 10.*
- laravel: 9.*
testbench: 7.*
phpunit: 9.*
- laravel: 11.*
testbench: 9.*
phpunit: 10.*
exclude:
- laravel: 10.*
php: 8.0
- laravel: 11.*
php: 8.0
- laravel: 11.*
php: 8.1

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

steps:
- uses: actions/checkout@v4

- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: mbstring, dom, curl, pdo_mysql
tools: composer, phpunit

- name: Install Dependencies
run: composer install --no-progress --prefer-dist

- name: Run Tests
run: vendor/bin/phpunit

- name: Checkout code
uses: actions/checkout@v1

- 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 }}" "orchestra/testbench:${{ matrix.testbench }}" "phpunit/phpunit:${{ matrix.phpunit }}" --no-interaction --no-update
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction --no-suggest
- name: Execute tests
run: vendor/bin/phpunit
# Add additional steps if necessary, like linting, code style checks, etc.
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
}
},
"require": {
"php": "^8.2",
"illuminate/support": "^8.71|^9.0|^10.0|^11.0"
"php": "^8.0",
"laravel/framework": "^9.0|^10.0|^11.0"
},
"scripts": {
"test": "vendor/bin/phpunit"
Expand All @@ -42,7 +42,7 @@
}
},
"require-dev": {
"phpunit/phpunit": "^11.0",
"laravel/pint": "^1.14"
"phpunit/phpunit": "^9.0|^10.0",
"orchestra/testbench": "^7.0|^8.0|^9.0"
}
}
7 changes: 1 addition & 6 deletions phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,7 @@
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/autoload.php" backupGlobals="false" colors="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.0/phpunit.xsd">
<testsuites>
<testsuite name="Rolling Average Collection Tests">
<directory>tests</directory>
<directory suffix=".php">./tests/Macros</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">src/</directory>
</include>
</source>
</phpunit>

0 comments on commit e58680d

Please sign in to comment.