-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Ari Stathopoulos <[email protected]> Co-authored-by: Brandon Payton <[email protected]>
- Loading branch information
1 parent
037f6ef
commit 23ed221
Showing
8 changed files
with
102 additions
and
19 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,47 @@ | ||
name: Run PHPUnit tests | ||
|
||
on: | ||
workflow_call: | ||
inputs: | ||
os: | ||
description: 'Operating system to run tests on' | ||
required: false | ||
type: 'string' | ||
default: 'ubuntu-latest' | ||
php: | ||
description: 'The version of PHP to use, in the format of X.Y' | ||
required: true | ||
type: 'string' | ||
phpunit-config: | ||
description: 'The PHPUnit configuration file to use' | ||
required: false | ||
type: 'string' | ||
default: 'phpunit.xml.dist' | ||
env: | ||
LOCAL_PHP: ${{ inputs.php }}-fpm | ||
PHPUNIT_CONFIG: ${{ inputs.phpunit-config }} | ||
|
||
jobs: | ||
phpunit-tests: | ||
name: ${{ inputs.os }} | ||
runs-on: ${{ inputs.os }} | ||
timeout-minutes: 20 | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: '${{ inputs.php }}' | ||
tools: phpunit-polyfills | ||
|
||
- name: Install Composer dependencies | ||
uses: ramsey/composer-install@v3 | ||
with: | ||
ignore-cache: "yes" | ||
composer-options: "--optimize-autoloader" | ||
|
||
- name: Run PHPUnit tests | ||
run: php ./vendor/bin/phpunit -c ./phpunit.xml.dist |
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,28 @@ | ||
name: PHPUnit Tests | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
|
||
jobs: | ||
test: | ||
name: PHP ${{ matrix.php }} | ||
uses: ./.github/workflows/phpunit-tests-run.yml | ||
permissions: | ||
contents: read | ||
secrets: inherit | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ ubuntu-latest ] | ||
# NOTE: There does not appear to be a single phpunit version that supports all | ||
# PHP versions tested here. For now, we are removing PHP 7.0. and 7.1 tests | ||
# in order to run a single phpunit version for PHP 7.2 and up. | ||
php: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3' ] | ||
|
||
with: | ||
os: ${{ matrix.os }} | ||
php: ${{ matrix.php }} | ||
phpunit-config: ${{ 'phpunit.xml.dist' }} |
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
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