Fix scripts, README and examples

This commit is contained in:
Shivam Mathur
2019-10-10 17:47:17 +05:30
parent 409e055931
commit c1c0acc338
17 changed files with 87 additions and 78 deletions

View File

@ -1,3 +1,4 @@
# GitHub Action for Slim Framework
name: Testing Slim Framework
on: [push, pull_request]
jobs:
@ -19,9 +20,6 @@ jobs:
coverage: xdebug #optional
- name: Install dependencies
run: composer install --no-progress --no-suggest --prefer-dist --optimize-autoloader
- name: Test with phpunit in windows
if: matrix.operating-system == 'windows-latest'
run: .\vendor\bin\phpunit --coverage-text
- name: Test with phpunit
if: matrix.operating-system != 'windows-latest'
run: vendor/bin/phpunit --coverage-text
run: vendor/bin/phpunit --coverage-text
shell: pwsh