Skip to content

[stable2.2] fix(imap): Chunk MessageMapper::findByIds by command length #10665

[stable2.2] fix(imap): Chunk MessageMapper::findByIds by command length

[stable2.2] fix(imap): Chunk MessageMapper::findByIds by command length #10665

Workflow file for this run

name: Static analysis
on: pull_request
permissions:
contents: read
jobs:
static-psalm-analysis:
runs-on: ubuntu-latest
strategy:
matrix:
ocp-version: [ 'dev-stable26', 'dev-stable25' ]
name: Nextcloud ${{ matrix.ocp-version }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up php
uses: shivammathur/setup-php@v2
with:
php-version: 7.4
coverage: none
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Install dependencies
run: composer i
- name: Install OCP package
run: composer require --dev nextcloud/ocp:${{ matrix.ocp-version }} --ignore-platform-reqs
- name: Run coding standards check
run: composer run psalm
summary:
runs-on: ubuntu-latest
needs:
- static-psalm-analysis
if: always()
name: static-analysis-summary
steps:
- name: Static analysis status
run: if ${{ needs.static-psalm-analysis.result != 'success' && needs.static-psalm-analysis.result != 'skipped' }}; then exit 1; fi