-
Notifications
You must be signed in to change notification settings - Fork 39
51 lines (44 loc) · 1.67 KB
/
static-analyse.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
name: "Static analyse"
on:
push:
pull_request:
jobs:
tests:
name: Analyse
strategy:
matrix:
php-version:
- "8.3"
operating-system:
- "ubuntu-latest"
runs-on: ${{ matrix.operating-system }}
env:
COMPOSER_MEMORY_LIMIT: -1
CODING_STANDARDS: 1
steps:
- name: "Checkout"
uses: "actions/checkout@v4"
- name: "Setup PHP"
uses: "shivammathur/setup-php@v2"
with:
tools: composer:v2
php-version: "${{ matrix.php-version }}"
ini-values: memory_limit=-1
- name: "Get Composer Cache Directory"
id: composer-cache
run: |
echo "::set-output name=dir::$(composer config cache-files-dir)"
- name: "Cache Composer dependencies"
uses: "actions/cache@v4"
with:
path: |
${{ steps.composer-cache.outputs.dir }}
key: "php-${{ matrix.php-version }}-${{ matrix.dependencies }}-composer-${{ hashFiles('**/composer.lock') }}"
restore-keys: |
php-${{ matrix.php-version }}-${{ matrix.dependencies }}-composer-
- name: "Install dependencies"
run: "composer update -n --prefer-dist"
- name: "Analyse"
run: |
./vendor/bin/php-cs-fixer fix -v --diff --dry-run
./vendor/bin/phpstan analyse -c phpstan.neon -l 6 src