Skip to content
This repository has been archived by the owner on May 21, 2024. It is now read-only.

fix: remove groupBy and orderBy for pagination total query builder #143

fix: remove groupBy and orderBy for pagination total query builder

fix: remove groupBy and orderBy for pagination total query builder #143

Workflow file for this run

name: tableBundle
on:
push:
branches:
- 'feature/1.0-dev-tree'
- 1.0-dev
pull_request:
branches:
- 'feature/1.0-dev-tree'
- 1.0-dev
jobs:
phpunit:
runs-on: ubuntu-latest
steps:
- uses: shivammathur/setup-php@2cb9b829437ee246e9b3cac53555a39208ca6d28
with:
php-version: '8.1'
- uses: actions/checkout@v2
- name: Install Dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
- name: Execute tests (Unit and Feature tests) via PHPUnit
env:
DATABASE_URL: sqlite:///%kernel.project_dir%/var/app.db
run: vendor/bin/simple-phpunit
- name: Check Code Styles
run: vendor/bin/ecs
- name: Check PHP Stan
run: vendor/bin/phpstan analyse src tests