Update Russian Language Localization #67
Workflow file for this run
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: CI | |
on: | |
push: | |
branches: | |
- dev/* | |
pull_request: | |
jobs: | |
phpstan: | |
name: PHPStan analysis | |
runs-on: ${{ matrix.image }} | |
strategy: | |
matrix: | |
image: | |
- ubuntu-20.04 | |
php: | |
- 8.2 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup PHP | |
uses: pmmp/setup-php-action@2.0.0 | |
with: | |
php-version: ${{ matrix.php }} | |
install-path: "./bin" | |
pm-version-major: "5" | |
- name: Install Composer | |
run: curl -sS https://getcomposer.org/installer | php | |
- name: Restore Composer package cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cache/composer/files | |
~/.cache/composer/vcs | |
key: "composer-v2-cache-${{ matrix.php }}-${{ hashFiles('**/composer.lock') }}" | |
restore-keys: | | |
composer-v2-cache- | |
- name: Install Composer dependencies | |
run: composer install --prefer-dist --no-interaction | |
- name: Analyze with PHPStan | |
run: ./vendor/bin/phpstan analyze --no-progress --memory-limit=2G |