-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Update to composer.json for versions.
- Documentation update. - Bump dependencies to jausions/php-typed-collections:^v2.0
- Loading branch information
Showing
15 changed files
with
153 additions
and
128 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,42 @@ | ||
name: Run tests | ||
|
||
on: | ||
push: | ||
pull_request: | ||
types: [opened, synchronize, reopened] | ||
branches: | ||
- master | ||
|
||
jobs: | ||
test-php: | ||
name: Test on php ${{ matrix.php-version }} and ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
continue-on-error: ${{ matrix.experimental }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
php-version: ["5.6", "7.0", "7.1", "7.2", "7.3", "7.4", "8.0", "8.1", "8.2"] | ||
os: [macos-latest, windows-latest, ubuntu-latest] | ||
experimental: [false] | ||
php-extensions: ["json"] | ||
coverage-extension: ["none"] | ||
include: | ||
- { php-version: 'nightly', os: ubuntu-latest, experimental: true } | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Use php ${{ matrix.php-version }} | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: ${{ matrix.php-version }} | ||
coverage: ${{ matrix.coverage-extension }} | ||
extensions: ${{ matrix.php-extensions }} | ||
ini-values: display_errors=on, display_startup_errors=on, error_reporting=-1 | ||
- name: Cache module | ||
uses: actions/cache@v3 | ||
with: | ||
path: ~/.composer/cache/ | ||
key: composer-cache | ||
- name: Install dependencies | ||
run: composer install --no-interaction | ||
- name: Run PHPUnit test | ||
run: vendor/bin/phpunit tests/ |
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
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
Oops, something went wrong.