Fix: MSSQL text filter double N-prefix (NN'...') with Dibi 4.1+ #840
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: "Coverage" | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| push: | |
| branches: ["*"] | |
| schedule: | |
| - cron: "0 8 * * 1" | |
| jobs: | |
| coverage: | |
| name: "Nette Tester" | |
| runs-on: "ubuntu-latest" | |
| services: | |
| mysql: | |
| image: "mysql:5.7" | |
| env: | |
| MYSQL_ALLOW_EMPTY_PASSWORD: true | |
| MYSQL_DATABASE: "tests" | |
| ports: | |
| - 3306:3306 | |
| steps: | |
| - name: "Checkout" | |
| uses: "actions/checkout@v4" | |
| - name: "PHP" | |
| uses: "contributte/.github/.github/actions/setup-php@master" | |
| with: | |
| php: "8.5" | |
| - name: "Composer" | |
| uses: "contributte/.github/.github/actions/setup-composer@master" | |
| with: | |
| command: "composer install --no-interaction --no-progress --prefer-dist" | |
| - name: "Run Nette Tester" | |
| run: "make coverage" | |
| - name: "Codecov" | |
| uses: "codecov/codecov-action@v4" | |
| env: | |
| CODECOV_TOKEN: "${{ secrets.CODECOV_TOKEN }}" |