-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
36 changed files
with
655 additions
and
572 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
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ name: Main | |
on: | ||
push: | ||
branches: [ main, develop, wip ] | ||
# As of September 19, 2023, these branches-ignore patterns don't work due to | ||
# As of September 19, 2023, these paths-ignore patterns don't work due to | ||
# a bug in GitHub Actions See https://github.com/actions/runner/issues/2324 | ||
# Ditto below. | ||
paths-ignore: | ||
|
@@ -41,34 +41,34 @@ jobs: | |
run: "composer static" | ||
|
||
tests: | ||
name: "Test: ${{ matrix.os }} / ${{ matrix.php }} / ${{ matrix.dependencies }}" | ||
name: "Tests: ${{ matrix.os }} / ${{ matrix.php }} / ${{ matrix.dependencies }}${{ matrix.os == 'ubuntu' && matrix.dependencies == 'high' && matrix.php == '8.3' && ' w/ coverage' || '' }}" | ||
runs-on: "${{ matrix.os }}-latest" | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ ubuntu, macos, windows ] | ||
php: [ "8.1", "8.2" ] | ||
dependencies: [ lowest, highest ] | ||
php: [ "8.1", "8.2", "8.3" ] | ||
dependencies: [ low, high ] | ||
steps: | ||
- name: "Install rsync" | ||
uses: GuillaumeFalourd/[email protected] # https://github.com/marketplace/actions/setup-rsync | ||
|
||
- name: "Set up PHP w/ Coverage" | ||
if: ${{ matrix.os == 'ubuntu' && matrix.dependencies == 'highest' }} | ||
if: ${{ matrix.os == 'ubuntu' && matrix.dependencies == 'high' && matrix.php == '8.3' }} | ||
uses: shivammathur/setup-php@v2 # https://github.com/marketplace/actions/setup-php-action | ||
with: | ||
php-version: "${{ matrix.php }}" | ||
extensions: gd | ||
ini-values: assert.active=1, assert.exception=1, zend.assertions=1 | ||
ini-values: zend.assertions=1 | ||
|
||
- name: "Set up PHP w/o Coverage" | ||
if: ${{ !( matrix.os == 'ubuntu' && matrix.dependencies == 'highest' ) }} | ||
if: ${{ !( matrix.os == 'ubuntu' && matrix.dependencies == 'high' && matrix.php == '8.3' ) }} | ||
uses: shivammathur/setup-php@v2 # https://github.com/marketplace/actions/setup-php-action | ||
with: | ||
php-version: "${{ matrix.php }}" | ||
coverage: none | ||
extensions: gd | ||
ini-values: assert.active=1, assert.exception=1, zend.assertions=1 | ||
ini-values: zend.assertions=1 | ||
|
||
- name: "Debugging info" | ||
run: | | ||
|
@@ -81,19 +81,19 @@ jobs: | |
- name: "Install dependencies" | ||
uses: ramsey/composer-install@v3 # https://github.com/marketplace/actions/install-composer-dependencies | ||
with: | ||
dependency-versions: "${{ matrix.dependencies }}" | ||
dependency-versions: "${{ matrix.dependencies }}est" | ||
|
||
- name: "Run core tests with coverage" | ||
run: "composer test" | ||
if: ${{ matrix.os == 'ubuntu' && matrix.dependencies == 'highest' }} | ||
if: ${{ matrix.os == 'ubuntu' && matrix.dependencies == 'high' && matrix.php == '8.3' }} | ||
|
||
# There's no reason to generate coverage data on multiple jobs--the result should be the same. | ||
- name: "Run core tests without coverage" | ||
run: "./vendor/bin/phpunit --no-coverage --exclude-group=windows_only" | ||
if: ${{ runner.os != 'Windows' && !( matrix.os == 'ubuntu' && matrix.dependencies == 'highest' ) }} | ||
run: "./vendor/bin/phpunit --no-coverage --testsuite=all --exclude-group=windows_only" | ||
if: ${{ runner.os != 'Windows' && !( matrix.os == 'ubuntu' && matrix.dependencies == 'high' && matrix.php == '8.3' ) }} | ||
|
||
- name: "Run Windows tests" | ||
run: "./vendor/bin/phpunit --no-coverage --exclude-group=no_windows" | ||
run: "./vendor/bin/phpunit --no-coverage --testsuite=all --exclude-group=no_windows" | ||
if: ${{ runner.os == 'Windows' }} | ||
|
||
performance: | ||
|
@@ -122,6 +122,28 @@ jobs: | |
- name: "Run performance tests" | ||
run: "composer phpbench -- --progress=plain --ansi" | ||
|
||
compatability: | ||
name: "Compatability" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: "Install rsync" | ||
uses: GuillaumeFalourd/[email protected] # https://github.com/marketplace/actions/setup-rsync | ||
|
||
- name: "Set up PHP" | ||
uses: shivammathur/setup-php@v2 # https://github.com/marketplace/actions/setup-php-action | ||
with: | ||
php-version: "8.3" | ||
coverage: none | ||
|
||
- name: "Checkout code" | ||
uses: actions/checkout@v4 # https://github.com/marketplace/actions/checkout | ||
|
||
- name: "Install dependencies" | ||
uses: ramsey/composer-install@v3 # https://github.com/marketplace/actions/install-composer-dependencies | ||
|
||
- name: "Run compatability tests" | ||
run: "composer compatability" | ||
|
||
mutation: | ||
name: "Mutation" | ||
runs-on: ubuntu-latest | ||
|
@@ -131,7 +153,7 @@ jobs: | |
with: | ||
php-version: "8.2" | ||
extensions: gd | ||
ini-values: assert.active=1, assert.exception=1, zend.assertions=1 | ||
ini-values: zend.assertions=1 | ||
|
||
- name: "Checkout code" | ||
uses: actions/checkout@v4 # https://github.com/marketplace/actions/checkout | ||
|
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 |
---|---|---|
|
@@ -15,15 +15,15 @@ jobs: | |
fail-fast: false | ||
matrix: | ||
os: [ ubuntu-latest, macos-latest, windows-latest ] | ||
php: [ "8.1" ] | ||
php: [ "8.2" ] | ||
steps: | ||
- name: "Install rsync" | ||
uses: GuillaumeFalourd/[email protected] # https://github.com/marketplace/actions/setup-rsync | ||
|
||
- name: "Set up PHP" | ||
uses: shivammathur/setup-php@v2 # https://github.com/marketplace/actions/setup-php-action | ||
with: | ||
php-version: "8.1" | ||
php-version: "8.2" | ||
coverage: none | ||
|
||
- name: "Checkout code" | ||
|
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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.