mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-13 00:56:12 +01:00
[TASK] Migrate copy'n'paste detector to GitHub actions (#222)
Co-authored-by: Łukasz Uznański <l.uznanski@macopedia.com>
This commit is contained in:
parent
c530a1f20d
commit
0b3527c125
1 changed files with 9 additions and 1 deletions
10
.github/workflows/ci.yml
vendored
10
.github/workflows/ci.yml
vendored
|
@ -45,6 +45,15 @@ jobs:
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
- name: "Run YAML lint"
|
- name: "Run YAML lint"
|
||||||
uses: TYPO3-Continuous-Integration/TYPO3-CI-YAML-Lint@v1
|
uses: TYPO3-Continuous-Integration/TYPO3-CI-YAML-Lint@v1
|
||||||
|
copypaste-detector:
|
||||||
|
name: "Copy'n'paste detector"
|
||||||
|
runs-on: ubuntu-20.04
|
||||||
|
needs: php-lint
|
||||||
|
steps:
|
||||||
|
- name: "Checkout"
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
- name: "Run the Copy'n'paste Detector"
|
||||||
|
uses: TYPO3-Continuous-Integration/TYPO3-CI-Copy-Paste-Detector@v1
|
||||||
code-quality:
|
code-quality:
|
||||||
name: "Code quality checks"
|
name: "Code quality checks"
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
|
@ -76,7 +85,6 @@ jobs:
|
||||||
- "json:lint"
|
- "json:lint"
|
||||||
- "php:sniff"
|
- "php:sniff"
|
||||||
- "php:codestyle"
|
- "php:codestyle"
|
||||||
- "php:copypaste"
|
|
||||||
- "php:stan"
|
- "php:stan"
|
||||||
- "composer:normalize"
|
- "composer:normalize"
|
||||||
php-version:
|
php-version:
|
||||||
|
|
Loading…
Reference in a new issue