-
Notifications
You must be signed in to change notification settings - Fork 3
63 lines (52 loc) · 1.55 KB
/
static-analyze.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
60
61
62
63
name: "Static Analyze"
on:
pull_request:
push:
branches:
- "1.x"
schedule:
- cron: '* 8 * * *'
jobs:
static-analyze:
name: "Static Analyze"
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
php-version:
- "8.1"
operating-system:
- "ubuntu-latest"
steps:
- name: "Checkout"
uses: "actions/checkout@v2"
- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
coverage: pcov
tools: composer:v2
php-version: "${{ matrix.php-version }}"
ini-values: memory_limit=-1
- name: "Cache Phive dependencies"
uses: "actions/cache@v2"
with:
path: |
~/.phive
key: "${{ runner.os }}-phive-${{ hashFiles('**/phars.xml') }}"
restore-keys: |
${{ runner.os }}-phive-
- 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@v2"
with:
path: |
${{ steps.composer-cache.outputs.dir }}
key: "php-${{ matrix.php-version }}-composer-${{ hashFiles('**/composer.lock') }}"
restore-keys: |
php-${{ matrix.php-version }}-composer-
- name: "Install locked dependencies"
run: "composer install --no-interaction --no-progress --no-suggest"
- name: "Static Analyze"
run: "composer static:analyze"