-
Notifications
You must be signed in to change notification settings - Fork 39
45 lines (40 loc) · 1.46 KB
/
call-plugin-workflow.yml
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
name: Run plugin workflow
on:
pull_request:
workflow_dispatch:
push:
branches:
- main
schedule:
- cron: '01 01 * * *'
jobs:
call-test-workflow:
name: Run tests for SwagBackendOrder
strategy:
matrix:
include:
- shopware-version: '5.6'
php-version: '7.2'
mysql-version: '5.7'
- shopware-version: '5.7'
php-version: '7.4'
mysql-version: '8.0'
- shopware-version: '5.7'
php-version: '8.2'
mysql-version: '8.0'
uses: shopware5/docker-images-testing/.github/workflows/php-unit-tests-shopware.yml@main
with:
plugin-name: SwagBackendOrder
php-version: ${{ matrix.php-version }}
shopware-version: ${{ matrix.shopware-version }}
mysql-version: ${{ matrix.mysql-version }}
call-analyse-workflow:
name: Analyse code for SwagBackendOrder
uses: shopware5/docker-images-testing/.github/workflows/php-code-analysis.yml@main
with:
plugin-name: SwagBackendOrder
call-javascript-workflow:
name: Analyse Javascript Code for SwagBackendOrder
uses: shopware5/docker-images-testing/.github/workflows/javascript-analysis.yml@main
with:
plugin-name: SwagBackendOrder