Add ColumnFilter with all operators on a single column #85
Workflow file for this run
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: | |
| branches: [main] | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| tests: | |
| if: "!contains(github.event.head_commit.message, '[skip-ci]')" | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| php: ["8.4"] | |
| actions: | |
| - name: Execute Pest | |
| run: ./vendor/bin/pest -c phpunit.ci.dist.xml | |
| name: PHP ${{ matrix.php }} | |
| runs-on: blacksmith-2vcpu-ubuntu-2404 | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v6 | |
| - name: Set up PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| extensions: curl, intl, mbstring, sqlite3, xml, zip | |
| coverage: none | |
| - name: Cache dependencies | |
| uses: actions/cache@v5 | |
| with: | |
| path: ~/.composer/cache/files | |
| key: composer-dependencies-php-${{ matrix.php }}-${{ hashFiles('composer.json') }} | |
| - name: Install Composer dependencies | |
| uses: ramsey/composer-install@4.0.0 | |
| - run: ${{ matrix.actions.run }} |