Adds batch option for face clustering. Issue #712 (Among many others) #241
This file contains 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: Static analysis | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
static-psalm-analysis: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ocp-version: ['dev-stable28'] | |
name: Nextcloud ${{ matrix.ocp-version }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
- name: Set up php | |
uses: shivammathur/setup-php@master | |
with: | |
php-version: 8.1 | |
tools: composer:v1 | |
coverage: none | |
- name: Install dependencies | |
run: composer i | |
- name: Install dependencies | |
run: composer require --dev nextcloud/ocp:${{ matrix.ocp-version }} | |
- name: Run coding standards check | |
run: composer run psalm |