add code of conduct file #131
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: Analyse and format | |
on: | |
push: | |
pull_request: | |
jobs: | |
analysis: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
php: | |
- 8.1 | |
- 8.2 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite | |
tools: composer:v2,phpstan | |
coverage: none | |
- name: Install Composer dependencies | |
run: composer install --prefer-dist --no-interaction | |
- name: Run analysis | |
run: phpstan analyse --no-ansi --no-interaction --no-progress | |
format: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.1 | |
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite | |
tools: composer:v2,php-cs-fixer | |
coverage: none | |
- name: Run formatter | |
run: php-cs-fixer fix --no-ansi | |
- name: Commit changes | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
file_pattern: '*.php' | |
create_branch: false | |
add_options: '-u' | |
push_options: '--force-with-lease' | |
commit_message: ":hammer: :construction_worker: formatting changes" | |
rector: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.1 | |
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite | |
tools: composer:v2 | |
coverage: none | |
- name: Install Composer dependencies | |
run: composer install --prefer-dist --no-interaction | |
- name: Rector Cache | |
uses: actions/cache@v4 | |
with: | |
path: ./.cache/rector | |
key: ${{ runner.os }}-rector-${{ hashFiles('**/composer.lock') }} | |
restore-keys: ${{ runner.os }}-rector- | |
- name: Run Rector upgrades | |
run: ./vendor/bin/rector process --no-ansi --no-diffs | |
- name: Commit changes | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
file_pattern: '*.php' | |
create_branch: false | |
add_options: '-u' | |
push_options: '--force-with-lease' | |
commit_message: ":toolbox: :construction_worker: updating code" |