fix: List items for a conversation. file_id is null and file_data is not present in the API response
#1459
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: | |
| ci: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| os: [ubuntu-latest] | |
| php: [8.2, 8.3, 8.4] | |
| pest: [3, 4] | |
| dependency-version: [prefer-lowest, prefer-stable] | |
| exclude: | |
| - php: 8.2 | |
| pest: 4 | |
| name: Tests P${{ matrix.php }} - Pest ${{ matrix.pest }} - ${{ matrix.os }} - ${{ matrix.dependency-version }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Cache dependencies | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.composer/cache/files | |
| key: dependencies-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }} | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| extensions: dom, mbstring, zip | |
| coverage: none | |
| - name: Install Pest | |
| run: composer require pestphp/pest:^${{ matrix.pest }} --dev --no-update --with-all-dependencies | |
| - name: Install Composer dependencies | |
| run: composer update --${{ matrix.dependency-version }} --no-interaction --prefer-dist | |
| - name: Unit Tests | |
| run: composer test:unit |