Skip to content

Commit

Permalink
Update CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
endroid committed Nov 27, 2020
1 parent ab17051 commit 9cdd4f5
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,12 @@ jobs:
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: mbstring, gd, zip
extensions: gd, mbstring, pcov, zip
ini-values: max_execution_time=600, memory_limit=-1
coverage: pcov
- name: Install dependencies
run: |
curl -sS https://getcomposer.org/installer | php -- --filename=composer
composer install
./composer install
- name: Check code quality
run: |
vendor/bin/code-quality
Expand All @@ -30,11 +29,11 @@ jobs:
vendor/bin/functional-test
- name: Test against lowest versions
run: |
composer update --prefer-lowest
./composer update --prefer-lowest
vendor/bin/unit-test
vendor/bin/functional-test ^3.4
vendor/bin/functional-test ^4.4
- name: Archive code coverage results
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v2
with:
name: coverage
path: tests/coverage

0 comments on commit 9cdd4f5

Please sign in to comment.