-
Notifications
You must be signed in to change notification settings - Fork 0
115 lines (95 loc) · 3.54 KB
/
Copy pathci.yaml
File metadata and controls
115 lines (95 loc) · 3.54 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
name: "CI"
concurrency:
group: "ci-${{ github.head_ref || github.run_id }}"
cancel-in-progress: true
on:
merge_group:
pull_request:
push:
branches:
- "main"
permissions: {}
jobs:
lint-actionlint:
name: "Lint workflows"
runs-on: "ubuntu-latest"
permissions:
contents: read
steps:
- name: "Checkout"
uses: "actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1" # v7
with:
persist-credentials: false
show-progress: false
- name: "Install actionlint"
id: actionlint
run: bash <(curl -fsSL https://raw.githubusercontent.com/rhysd/actionlint/v1.7.12/scripts/download-actionlint.bash) 1.7.12
- name: "Run actionlint"
env:
ACTIONLINT: "${{ steps.actionlint.outputs.executable }}"
run: |
echo "::add-matcher::.github/actionlint-matcher.json"
trap 'echo "::remove-matcher owner=actionlint::"' EXIT
"$ACTIONLINT" -color
ci:
name: "Execute (PHP ${{ matrix.php-version }} @ ${{ matrix.dependencies }} deps)"
runs-on: "ubuntu-latest"
permissions:
contents: read
strategy:
fail-fast: false
matrix:
dependencies:
- "lowest"
- "highest"
- "locked"
php-version:
- "8.4"
- "8.5"
steps:
- name: "Checkout"
uses: "actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1" # v7
with:
persist-credentials: false
show-progress: false
- name: "Install PHP"
uses: "shivammathur/setup-php@f3e473d116dcccaddc5834248c87452386958240" # v2
with:
coverage: "none"
php-version: "${{ matrix.php-version }}"
ini-values: memory_limit=-1
- name: "Cache Static Analysis Cache Files"
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6
if: ${{ matrix.dependencies == 'locked' }}
with:
path: ./tmp
key: ${{ runner.OS }}-${{ matrix.php-version }}-static-analysis-${{ hashFiles('**/composer.lock') }}-${{ github.run_id }}-${{ github.run_number }}
restore-keys: |
${{ runner.OS }}-${{ matrix.php-version }}-static-analysis-${{ hashFiles('**/composer.lock') }}-${{ github.run_id }}
${{ runner.OS }}-${{ matrix.php-version }}-static-analysis-${{ hashFiles('**/composer.lock') }}-
${{ runner.OS }}-${{ matrix.php-version }}-static-analysis-
- name: "Update Composer platform version"
if: ${{ matrix.dependencies != 'locked' && matrix.php-version != '8.4' }}
shell: bash
run: "composer config platform.php ${{ matrix.php-version }}"
- name: "Install dependencies"
uses: ramsey/composer-install@65e4f84970763564f46a70b8a54b90d033b3bdda # 4.0.0
with:
dependency-versions: "${{ matrix.dependencies }}"
- name: "Validate Composer dependencies"
run: "composer validate"
- name: "Check composer.json normalization"
run: "composer normalize --dry-run --ansi"
- name: "Check Composer dependency licenses"
run: "composer licenses:check"
- name: "Run coding style"
if: ${{ matrix.dependencies == 'locked' && matrix.php-version == '8.4' }}
run: "composer code-style:check"
- name: "Run PHPStan"
if: ${{ matrix.dependencies == 'locked' }}
run: "composer phpstan"
- name: "Run Rector"
if: ${{ matrix.dependencies == 'locked' }}
run: "composer rector:check"
- name: "Tests"
run: "composer tests"