Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move the searching from Traits into Class based to allow for the dropping of the all() method and search functionality #10

Merged
merged 20 commits into from Oct 31, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
25 changes: 21 additions & 4 deletions .github/workflows/ci.yml
Expand Up @@ -20,9 +20,6 @@ jobs:
- name: Run composer install
run: composer install -n --prefer-dist

- name: Run ECS
run: ./vendor/bin/ecs check src

- name: Run PHPUnit
run: ./vendor/bin/phpunit

Expand All @@ -44,4 +41,24 @@ jobs:
run: composer install -n --prefer-dist

- name: Run ECS
run: ./vendor/bin/ecs check src
run: ./vendor/bin/ecs check src tests

PHPStan:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7.4'
extensions: json
tools: composer:v2
coverage: none

- name: Run composer install
run: composer install -n --prefer-dist

- name: Run ECS
run: ./vendor/bin/phpstan analyse src --level 9