Skip to content

Merge pull request #22 from ict-solutions-dev/dependabot/github_actio… #23

Merge pull request #22 from ict-solutions-dev/dependabot/github_actio…

Merge pull request #22 from ict-solutions-dev/dependabot/github_actio… #23

Workflow file for this run

name: PHPCPD
on:
pull_request:
branches:
- develop
paths:
- '**.php'
- '.github/workflows/phpcpd.yml'
push:
branches:
- develop
paths:
- '**.php'
- '.github/workflows/phpcpd.yml'
workflow_call:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
permissions:
contents: read
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@v5
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
tools: phpcpd
extensions: dom, mbstring
coverage: none
- name: Detect duplicate code
run: phpcpd src/ tests/