Add count method to InMemoryRepository #101
Workflow file for this run
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
name: Test | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
# Run on all PRs | |
env: | |
CI: "true" | |
jobs: | |
phpunit: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
dependencies: | |
- 'high' | |
- 'low' | |
php: | |
- '7.4' | |
- '8.0' | |
- '8.1' | |
- '8.2' | |
- '8.3' | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
coverage: pcov | |
ini-values: zend.assertions=1, assert.exception=1, error_reporting=-1 | |
php-version: ${{ matrix.php }} | |
- name: Cache Composer packages | |
id: composer-cache | |
uses: actions/cache@v2 | |
with: | |
path: vendor | |
key: ${{ runner.os }}-php-${{ matrix.dependencies }}-${{ matrix.php }}-${{ hashFiles('**/composer.json') }} | |
restore-keys: | | |
${{ runner.os }}-php-${{ matrix.dependencies }}-${{ matrix.php }}-${{ hashFiles('**/composer.json') }} | |
${{ runner.os }}-php-${{ matrix.dependencies }}-${{ matrix.php }}- | |
${{ runner.os }}-php-${{ matrix.dependencies }}- | |
${{ runner.os }}-php- | |
- name: Install highest dependencies | |
if: ${{ matrix.dependencies == 'high' }} | |
run: composer update | |
--no-ansi | |
--no-interaction | |
--no-progress | |
--no-suggest | |
--prefer-dist | |
- name: Install lowest dependencies | |
if: ${{ matrix.dependencies == 'low' }} | |
run: composer update | |
--no-ansi | |
--no-interaction | |
--no-progress | |
--no-suggest | |
--prefer-dist | |
--prefer-lowest | |
- name: PHPUnit | |
run: vendor/bin/phpunit | |
--coverage-clover coverage.xml | |
- name: Submit code coverage | |
if: ${{ always() }} | |
uses: codecov/codecov-action@v2 |