-
Notifications
You must be signed in to change notification settings - Fork 4
49 lines (40 loc) · 1.19 KB
/
cs.yaml
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
name: Coding Standards
on:
pull_request:
push:
branches:
- main
jobs:
coding-standards:
name: Coding Standards
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.1
- name: Get composer cache directory
id: composer-cache
shell: bash
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Cache dependencies
uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: composer-${{ runner.os }}-${{ matrix.php-version }}
restore-keys: |
composer-${{ runner.os }}-${{ matrix.php-version }}-
composer-${{ runner.os }}-
composer-
- name: Restore PHP-CS-Fixer cache
uses: actions/cache@v3
with:
path: .php-cs-fixer.cache
key: "php-cs-fixer"
restore-keys: "php-cs-fixer"
- name: Install dependencies
run: composer install --no-interaction --prefer-dist --no-progress
- name: Run PHP-CS-Fixer
run: make cs-check