-
-
Notifications
You must be signed in to change notification settings - Fork 362
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #48 from shivammathur/develop
1.3.7 - restructure code, fix extensions on 7.4 and add example
- Loading branch information
Showing
22 changed files
with
393 additions
and
270 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
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,15 @@ | ||
import * as pecl from '../src/pecl'; | ||
|
||
let valid_extensions = ['xdebug', 'pcov']; | ||
jest.mock('../src/pecl', () => ({ | ||
checkPECLExtension: jest.fn().mockImplementation(extension => { | ||
return valid_extensions.indexOf(extension) !== -1; | ||
}) | ||
})); | ||
|
||
describe('pecl tests', () => { | ||
it('checking checkPECLExtension', async () => { | ||
expect(await pecl.checkPECLExtension('extensionDoesNotExist')).toBe(false); | ||
expect(await pecl.checkPECLExtension('xdebug')).toBe(true); | ||
}); | ||
}); |
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 |
---|---|---|
@@ -0,0 +1,58 @@ | ||
name: Laravel | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
|
||
phpunit: | ||
name: PHPUnit (PHP ${{ matrix.php-versions }} on ${{ matrix.operating-system }}) | ||
runs-on: ubuntu-latest | ||
env: | ||
DB_PASSWORD: password | ||
BROADCAST_DRIVER: log | ||
CACHE_DRIVER: redis | ||
QUEUE_CONNECTION: redis | ||
SESSION_DRIVER: redis | ||
services: | ||
mysql: | ||
image: mysql:5.7 | ||
env: | ||
MYSQL_ALLOW_EMPTY_PASSWORD: false | ||
MYSQL_ROOT_PASSWORD: password | ||
MYSQL_DATABASE: laravel | ||
ports: | ||
- 3306 | ||
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 | ||
redis: | ||
image: redis | ||
ports: | ||
- 6379/tcp | ||
options: --health-cmd="redis-cli ping" --health-interval=10s --health-timeout=5s --health-retries=3 | ||
strategy: | ||
fail-fast: false | ||
max-parallel: 15 | ||
matrix: | ||
operating-system: [ubuntu-latest, windows-latest, macOS-latest] | ||
php-versions: ['7.2', '7.3'] | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v1 | ||
- name: Install PHP | ||
uses: shivammathur/setup-php@master #https://github.com/shivammathur/setup-php | ||
with: | ||
php-version: ${{ matrix.php-versions }} | ||
extension-csv: mbstring, xdebug #optional | ||
ini-values-csv: "post_max_size=256M, short_open_tag=On" #optional | ||
coverage: xdebug #optional | ||
- name: Install Composer dependencies | ||
run: composer install --no-progress --no-suggest --prefer-dist --optimize-autoloader | ||
- name: Prepare the application | ||
run: | | ||
cp .env.example .env | ||
php artisan key:generate | ||
- name: Clear Config | ||
run: php artisan config:clear | ||
- name: Run Migration | ||
run: php artisan migrate -v | ||
env: | ||
DB_PORT: ${{ job.services.mysql.ports['3306'] }} |
Oops, something went wrong.