Syncs for unknown domains would throw errors which weren't traceable … #430
This file contains hidden or 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
| name: Test application | |
| on: [ push ] | |
| jobs: | |
| phpunit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Composer install --dev | |
| uses: php-actions/composer@v6 | |
| with: | |
| working_dir: "modules/registrars/realtimeregister" | |
| - name: PHPUnit | |
| uses: php-actions/phpunit@master | |
| env: | |
| TEST_NAME: WHMCS | |
| with: | |
| version: 10 | |
| php_version: 8.1 | |
| bootstrap: modules/registrars/realtimeregister/vendor/autoload.php | |
| configuration: modules/registrars/realtimeregister/phpunit.xml.dist | |
| # args: --coverage-text |