-
Notifications
You must be signed in to change notification settings - Fork 2k
80 lines (68 loc) · 2.04 KB
/
test-psalm.yml
File metadata and controls
80 lines (68 loc) · 2.04 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
name: Psalm
on:
pull_request:
branches:
- develop
- '4.*'
paths:
- '**.php'
- 'composer.*'
- 'psalm*'
- '.github/workflows/test-psalm.yml'
push:
branches:
- develop
- '4.*'
paths:
- '**.php'
- 'composer.*'
- 'psalm*'
- '.github/workflows/test-psalm.yml'
jobs:
build:
name: Psalm Analysis
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
php-version:
- '8.2'
steps:
- name: Checkout base branch for PR
if: github.event_name == 'pull_request'
uses: actions/checkout@v6
with:
ref: ${{ github.base_ref }}
- name: Checkout
uses: actions/checkout@v6
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
extensions: intl, json, mbstring, xml, mysqli, oci8, pgsql, sqlsrv, sqlite3
coverage: none
env:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Get composer cache directory
id: composer-cache
run: echo "COMPOSER_CACHE_FILES_DIR=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Cache composer dependencies
uses: actions/cache@v5
with:
path: ${{ steps.composer-cache.outputs.COMPOSER_CACHE_FILES_DIR }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-
- name: Create Psalm cache directory
run: mkdir -p build/psalm
- name: Cache Psalm results
uses: actions/cache@v5
with:
path: build/psalm
key: ${{ runner.os }}-psalm-${{ github.sha }}
restore-keys: ${{ runner.os }}-psalm-
- name: Install dependencies
run: |
composer require sebastian/diff:^5.0 --ansi --working-dir utils
composer update --ansi --no-interaction
- name: Run Psalm analysis
run: utils/vendor/bin/psalm