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: Formats | |
| on: ['push', 'pull_request'] | |
| jobs: | |
| ci: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| os: [ubuntu-latest] | |
| php: [8.2] | |
| dependency-version: [prefer-lowest, prefer-stable] | |
| name: Formats P${{ matrix.php }} - ${{ 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: pcov | |
| - name: Install Composer dependencies | |
| run: composer update --${{ matrix.dependency-version }} --no-interaction --prefer-dist | |
| - name: Coding Style Checks | |
| run: composer test:lint | |
| - name: Type Checks | |
| run: composer test:types | |
| - name: Type Coverage | |
| run: composer test:type-coverage min=100 |