rename package #8
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: codestyle | |
# Commits made in here will not trigger any workflows | |
# Checkout Duster's documentation for a workaround | |
on: | |
push: | |
branches: [development, main] | |
pull_request: | |
branches: [development, main] | |
jobs: | |
duster-fix: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.head_ref }} | |
- name: "Duster Fix" | |
uses: tighten/duster-action@v2 | |
with: | |
args: fix | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
id: auto_commit_action | |
with: | |
commit_message: Dusting | |
commit_user_name: GitHub Action | |
commit_user_email: actions@github.com | |
- name: Ignore Duster commit in git blame | |
if: steps.auto_commit_action.outputs.changes_detected == 'true' | |
run: echo ${{ steps.auto_commit_action.outputs.commit_hash }} >> .git-blame-ignore-revs | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Ignore Dusting commit in git blame | |
commit_user_name: GitHub Action | |
commit_user_email: actions@github.com | |
duster-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.head_ref }} | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: "8.2" | |
- name: Get Composer Cache Directory | |
id: composer-cache | |
run: | | |
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
- name: Restore Composer Cache | |
uses: actions/cache@v3 | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | |
restore-keys: | | |
${{ runner.os }}-composer- | |
- name: Install Composer dependecies | |
run: composer install --no-progress --prefer-dist --optimize-autoloader --ignore-platform-reqs | |
- name: "Duster Lint" | |
uses: tighten/duster-action@v2 | |
with: | |
args: lint |