Skip to content

update-skeleton

update-skeleton #29

name: "update-skeleton"
on:
workflow_dispatch:
jobs:
update:
name: Update Skeleton
runs-on: ubuntu-latest
continue-on-error: false
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
extensions: dom, curl, libxml, mbstring, zip, pcntl, sqlite3, pdo_sqlite, pdo_mysql, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo
coverage: none
- name: Install Dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress
- name: Installed dependencies
run: composer show -D
- name: Sync changes
run: |
php bin/sync
- name: Execute Code Style Analysis
run: vendor/bin/pint
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Update Skeleton