-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Require composer-normalize * Add CI for normalize * Use ergebnis/composer-normalize * Update test matrix * Cleanup test.yaml * Test odd exclude/include rules * Update readme
- Loading branch information
Showing
5 changed files
with
107 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
name: Run tests | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
coding-standards: | ||
name: "Coding Standards" | ||
|
||
runs-on: "ubuntu-latest" | ||
|
||
strategy: | ||
matrix: | ||
php: | ||
- "8.3" | ||
|
||
steps: | ||
- name: "Checkout" | ||
uses: "actions/[email protected]" | ||
|
||
- name: Setup PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: ${{ matrix.php }} | ||
|
||
- name: Update composer | ||
run: composer self-update --2 | ||
|
||
- name: "Install dependencies" | ||
run: "composer install --no-interaction --no-progress" | ||
|
||
- name: "Run normalize" | ||
run: "composer normalize --dry-run" | ||
|
||
tests: | ||
runs-on: ${{ matrix.os }} | ||
|
||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, ubuntu-20.04] | ||
laravel: | ||
- 11.* | ||
php: | ||
- 8.2 | ||
- 8.3 | ||
dependency-version: [prefer-stable] | ||
exclude: | ||
- os: ubuntu-20.04 | ||
include: | ||
- os: ubuntu-20.04 | ||
laravel: 10.* | ||
php: 8.1 | ||
|
||
name: PHP ${{ matrix.php }} / Laravel ${{ matrix.laravel }} (${{ matrix.os }}) | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: ${{ matrix.php }} | ||
|
||
- name: Update composer | ||
run: composer self-update --2 | ||
|
||
- name: Install dependencies | ||
run: composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-progress | ||
|
||
- name: Execute tests | ||
run: composer test |
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters