feat: Add Doctrine DBAL QueryBuilder support #78
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: Pest | |
| on: | |
| - pull_request | |
| jobs: | |
| TypeCoverage: | |
| name: Type Coverage | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: "8.4" | |
| coverage: none | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Composer install | |
| run: composer install --no-interaction --no-ansi --no-progress | |
| - name: Run Pint | |
| run: ./vendor/bin/pest --type-coverage --min=100 |