feat: Ajout de la méthode selectRaw pour sélectionner des champs bruts #115
This file contains hidden or 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: Tests | ||
| on: | ||
| push: ~ | ||
| pull_request: ~ | ||
| jobs: | ||
| phpcs: | ||
| name: PHP-CS-Fixer | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v2 | ||
| - uses: shivammathur/setup-php@v2 | ||
| with: | ||
| php-version: 7.4 | ||
| extensions: curl | ||
| coverage: none | ||
| tools: composer:v2 | ||
| - run: composer update --no-progress | ||
| - run: vendor/bin/php-cs-fixer fix --verbose --ansi --dry-run --using-cache=no --diff | ||
| kahlan: | ||
| name: Kahlan on ${{ matrix.php }} ${{ matrix.composer-flags }} | ||
| runs-on: ubuntu-latest | ||
| continue-on-error: ${{ !matrix.stable }} | ||
| strategy: | ||
| matrix: | ||
| php: ['7.4', '8.0'] | ||
| stable: [true] | ||
| coverage: xdebug | ||
| composer-flags: [''] | ||
| steps: | ||
| - uses: actions/checkout@v2 | ||
| with: | ||
| fetch-depth: 0 | ||
| - uses: shivammathur/setup-php@v2 | ||
| with: | ||
| php-version: ${{ matrix.php }} | ||
| extensions: curl | ||
| coverage: pcov | ||
| tools: composer:v2 | ||
| - run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" | ||
| - run: composer update --no-progress ${{ matrix.composer-flags }} | ||
| - run: "vendor/bin/kahlan --clover=clover.xml" | ||
| - run: php vendor/bin/ocular code-coverage:upload --format=php-clover clover.xml | ||
| if: ${{ matrix.coverage }} | ||
| continue-on-error: true | ||
| phpstan: | ||
| name: PHPStan | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v2 | ||
| - uses: shivammathur/setup-php@v2 | ||
| with: | ||
| php-version: 7.4 | ||
| extensions: curl | ||
| coverage: none | ||
| tools: composer:v2 | ||
| - run: composer update --no-progress | ||
| - run: vendor/bin/phpstan analyse --no-progress | ||