8000 woip · soloterm/solo@c8eab12 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

woip

woip #117

Workflow file for this run

name: Fix Code Styling
on: [ push ]
jobs:
lint:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: "8.3"
extensions: json, dom, curl, libxml, mbstring
coverage: none
- name: Install Pint
run: composer global require laravel/pint
- name: Run Pint
run: pint
- name: Commit linted files
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "Fix code styling [ci skip]"
0