Skip to content

Add CLI info when --git-credentials is not empty #34

Add CLI info when --git-credentials is not empty

Add CLI info when --git-credentials is not empty #34

Workflow file for this run

name: PHPCSF
on:
push:
branches: [ '**' ]
pull_request:
branches: [ '**' ]
jobs:
style:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: ['8.2']
setup: ['stable']
name: PHP ${{ matrix.php }} - ${{ matrix.setup }}
steps:
- uses: actions/checkout@v6
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: composer:v2
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v4
with:
path: vendor
key: csf-${{ runner.os }}-${{ matrix.setup }}-${{ matrix.php }}-${{ hashFiles('**/composer.lock') }}
restore-keys: |
csf-${{ runner.os }}-${{ matrix.setup }}-${{ matrix.php }}-
- name: Install dependencies
if: steps.composer-cache.outputs.cache-hit != 'true'
run: |
composer remove --no-update --dev phpunit/phpunit phan/phan nette/utils phpmd/phpmd phpstan/phpstan squizlabs/php_codesniffer vimeo/psalm
composer update --prefer-dist ${{ matrix.setup != 'next' && format('--prefer-{0}', matrix.setup) || '' }} --no-progress
- name: Check style with phpcsf
run: composer run-script phpcsf