forked from rollerworks/split-token
-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (43 loc) · 1.39 KB
/
composer-validate.yaml
File metadata and controls
51 lines (43 loc) · 1.39 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
name: Composer Validate
on:
push:
paths:
- 'composer.json'
pull_request:
paths:
- 'composer.json'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
permissions:
contents: read
jobs:
composer-sync:
name: 'Composer validation'
runs-on: ubuntu-24.04
env:
php-version: '8.4'
steps:
-
name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ env.php-version }}
ini-values: "memory_limit=-1"
coverage: none
-
name: Checkout target branch
uses: actions/checkout@v6
-
name: 'Install dependencies'
run: |
COMPOSER_HOME="$(composer config home)"
([ -d "$COMPOSER_HOME" ] || mkdir "$COMPOSER_HOME") && cp .github/composer-config.json "$COMPOSER_HOME/config.json"
composer global require -q "ergebnis/composer-normalize"
composer install --no-progress
-
name: 'Normalized composer.json'
run: |
echo "composer.json"
composer validate
composer normalize