Skip to content

Commit 193099e

Browse files
committed
Merge branch 'master' of github.com:opengento/magento2-gdpr
2 parents acc4663 + 8c4a5a2 commit 193099e

File tree

3 files changed

+32
-0
lines changed

3 files changed

+32
-0
lines changed

.github/workflows/coding-standard.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: M2 Coding Standard
2+
on: [push, pull_request]
3+
4+
jobs:
5+
static:
6+
name: M2 Coding Standard
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v2
10+
- uses: extdn/github-actions-m2/magento-coding-standard@master

.github/workflows/mess-detector.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: M2 Mess Detector
2+
on: [push, pull_request]
3+
4+
jobs:
5+
phpmd:
6+
name: M2 Mess Detector
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v2
10+
- uses: extdn/github-actions-m2/magento-mess-detector@master

.github/workflows/phpstan.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: M2 PHPStan
2+
on: [push, pull_request, workflow_dispatch]
3+
4+
jobs:
5+
phpstan:
6+
name: M2 PHPStan
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v2
10+
- uses: extdn/github-actions-m2/magento-phpstan@master
11+
with:
12+
composer_name: opengento/module-gdpr

0 commit comments

Comments
 (0)