forked from Jooyeshgar/moadian
-
Notifications
You must be signed in to change notification settings - Fork 0
59 lines (49 loc) · 1.4 KB
/
lint.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: Fix Code Style
on:
push:
branches:
- main
- develop
pull_request:
permissions:
contents: write
jobs:
lint:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: [8.2]
env:
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite
key: php_${{ matrix.php }}_cache_v1
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup cache environment
id: ext_cache
uses: shivammathur/cache-extensions@v1
with:
php-version: ${{ matrix.php }}
extensions: ${{ env.extensions }}
key: ${{ env.key }}
- name: Cache extensions
uses: actions/cache@v4
with:
path: ${{ steps.ext_cache.outputs.dir }}
key: ${{ steps.ext_cache.outputs.key }}
restore-keys: ${{ steps.ext_cache.outputs.key }}
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: json, dom, curl, libxml, mbstring
coverage: none
- name: Install Pint
run: composer global require laravel/pint
- name: Run Pint
run: pint --preset psr12
- name: Commit linted files
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "style: improve code formatting and fix styling"