-
Notifications
You must be signed in to change notification settings - Fork 437
68 lines (60 loc) · 1.66 KB
/
tests.yaml
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
name: Tests
on:
push: ~
jobs:
php-cs-fixer:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
- run: composer install
- name: php-cs-fixer
run: vendor/bin/php-cs-fixer fix --dry-run --diff --show-progress=dots
packages:
runs-on: ubuntu-20.04
needs: php-cs-fixer
outputs:
packages: ${{ steps.script.outputs.result }}
steps:
- uses: actions/checkout@v4
- uses: actions/github-script@v7
id: script
with:
script: |
const fs = require('fs');
const composer = JSON.parse(
fs.readFileSync('./composer.json')
);
const packages = Object.keys(composer.autoload['psr-4']).map(
(namespace) => {
const path = composer.autoload['psr-4'][namespace];
const name = JSON.parse(fs.readFileSync(path + 'composer.json')).name;
return {
name: name,
path: './' + path,
};
}
);
console.log(packages);
return packages;
package:
runs-on: ubuntu-20.04
needs: packages
strategy:
matrix:
name:
- knplabs/snappy
path:
- ./
# include: ${{ fromJson(needs.packages.outputs.packages) }}
defaults:
run:
working-directory: ${{ matrix.path }}
steps:
- uses: actions/checkout@v4
# with:
# sparse-checkout: |
# ${{ matrix.path }}
- uses: shivammathur/setup-php@v2
- run: composer install
- run: vendor/bin/phpunit