fix: Magic Link Login can be used even if $allowMagicLinkLogins
is false
#1462
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PHPCPD | |
on: | |
pull_request: | |
branches: | |
- develop | |
paths: | |
- '**.php' | |
- '.github/workflows/phpcpd.yml' | |
push: | |
branches: | |
- develop | |
paths: | |
- '**.php' | |
- '.github/workflows/phpcpd.yml' | |
jobs: | |
build: | |
name: Code Copy-Paste Detection | |
runs-on: ubuntu-latest | |
if: "!contains(github.event.head_commit.message, '[ci skip]')" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.0' | |
tools: phpcpd | |
extensions: dom, mbstring | |
coverage: none | |
- name: Detect duplicate code | |
run: phpcpd src/ tests/ --exclude src/Database/Migrations/2020-12-28-223112_create_auth_tables.php |