Fix(l10n): Update translations from Transifex #439
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: [push] | |
jobs: | |
static-psalm-analysis: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ocp-version: [ 'dev-stable27', 'dev-stable26', 'dev-stable25' ] | |
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 | |
coverage: none | |
- name: Update php-cs-fixer | |
run: composer update friendsofphp/php-cs-fixer -W | |
- name: Install dependencies | |
run: composer i | |
- name: Install dependencies | |
run: composer require --dev nextcloud/ocp:${{ matrix.ocp-version }} psr/container symfony/service-contracts | |
- name: Run coding standards check | |
run: composer run psalm | |