-
Notifications
You must be signed in to change notification settings - Fork 14
122 lines (107 loc) · 3.66 KB
/
test.yml
File metadata and controls
122 lines (107 loc) · 3.66 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
116
117
118
119
120
121
name: Test
on:
push:
branches:
- 'main'
tags-ignore:
- '*'
pull_request:
workflow_call:
jobs:
get-matrix:
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.matrix.outputs.matrix }}
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Get Shopware Version
id: shopware-constraint
run: echo "shopware_constraint=$(cat composer.json | jq -r '.require."shopware/core"')" >> $GITHUB_OUTPUT
- name: Get Shopware Matrix
uses: tinect/github-shopware-matrix-generator@main
id: matrix
with:
versionConstraint: ${{ steps.shopware-constraint.outputs.shopware_constraint }}
allowEol: false
justMinMaxShopware: true
allowShopwareNext: true
allowShopwareRC: true
Test:
env:
PLUGIN_NAME: FroshPlatformThumbnailProcessor
needs: get-matrix
strategy:
fail-fast: false
matrix: ${{ fromJson(needs.get-matrix.outputs.matrix) }}
runs-on: ubuntu-latest
steps:
- name: Setup Shopware
uses: shopware/setup-shopware@main
with:
shopware-version: ${{ matrix.shopware }}
php-version: ${{ matrix.php }}
php-extensions: pcov
- name: Info
run: |
php bin/console -V
mysql -V
php -v
composer -V
- name: Checkout
uses: actions/checkout@v3
with:
path: ${{ github.workspace }}/custom/plugins/${{ env.PLUGIN_NAME }}
- name: Run UnitTests
working-directory: ${{ github.workspace }}/custom/plugins/${{ env.PLUGIN_NAME }}
run: |
composer create-placeholders
php -d pcov.enabled=1 ${{ github.workspace }}/vendor/bin/phpunit --coverage-clover clover.xml --testsuite Unit
- uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
files: ./clover.xml
root_dir: ${{ github.workspace }}/custom/plugins/${{ env.PLUGIN_NAME }}
working-directory: ${{ github.workspace }}/custom/plugins/${{ env.PLUGIN_NAME }}
# we call this after PHPUnit to make sure that the generated files are available
- name: PHPStan
run: |
${{ github.workspace }}/vendor/bin/phpstan analyse -c ${{ github.workspace }}/custom/plugins/${{ env.PLUGIN_NAME }}/phpstan.neon
IntegrationTest:
env:
PLUGIN_NAME: FroshPlatformThumbnailProcessor
needs: get-matrix
strategy:
fail-fast: false
matrix: ${{ fromJson(needs.get-matrix.outputs.matrix) }}
runs-on: ubuntu-latest
steps:
- name: Setup Shopware
uses: shopware/setup-shopware@main
with:
shopware-version: ${{ matrix.shopware }}
php-version: ${{ matrix.php }}
php-extensions: pcov
- name: Info
run: |
php bin/console -V
mysql -V
php -v
composer -V
- name: Checkout
uses: actions/checkout@v3
with:
path: ${{ github.workspace }}/custom/plugins/${{ env.PLUGIN_NAME }}
- name: PHPUnit Integration
working-directory: ${{ github.workspace }}/custom/plugins/${{ env.PLUGIN_NAME }}
run: |
composer create-placeholders
php -d pcov.enabled=1 ${{ github.workspace }}/vendor/bin/phpunit --testsuite Integration
- uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
files: ./clover.xml
root_dir: ${{ github.workspace }}/custom/plugins/${{ env.PLUGIN_NAME }}
working-directory: ${{ github.workspace }}/custom/plugins/${{ env.PLUGIN_NAME }}