Skip to content
This repository has been archived by the owner on Mar 16, 2024. It is now read-only.

Merge pull request #67 from LaravelRUS/dependabot/npm_and_yarn/axios-… #25

Merge pull request #67 from LaravelRUS/dependabot/npm_and_yarn/axios-…

Merge pull request #67 from LaravelRUS/dependabot/npm_and_yarn/axios-… #25

Workflow file for this run

name: codestyle
on:
push:
pull_request:
jobs:
psalm:
name: Code Style
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
php: [ '8.2' ]
os: [ ubuntu-latest ]
steps:
- name: Set Git To Use LF
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- name: Checkout
uses: actions/[email protected]
- name: Setup PHP ${{ matrix.php }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- name: Validate Composer
run: composer validate
- name: Get Composer Cache Directory
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
- name: Restore Composer Cache
uses: actions/cache@v1
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }}
restore-keys: ${{ runner.os }}-${{ matrix.php }}-composer-
- name: Install Dependencies
uses: nick-invision/retry@v1
with:
timeout_minutes: 5
max_attempts: 5
command: composer install --no-scripts --ignore-platform-reqs --prefer-dist --no-interaction --no-progress
- name: Check Code Style
continue-on-error: true
run: composer phpcs:check