Skip to content

Commit

Permalink
[DO NOT MERGE] Try out the new feature
Browse files Browse the repository at this point in the history
blop
  • Loading branch information
platisd committed Jun 1, 2024
1 parent 189b397 commit 9d15d4e
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/duplicate-code-detection.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Check for duplicate code
- name: Check for duplicate code (1)
uses: ./
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -19,3 +19,16 @@ jobs:
fail_above: 70
warn_above: 15
one_comment: true
header_message_start: '## 📌 Duplicate code detection tool report (1)'
- name: Check for duplicate code (2)
uses: ./
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
directories: "./"
# Only examine .h and .cpp files
file_extensions: "py"
ignore_below: 1
fail_above: 70
warn_above: 15
one_comment: true
header_message_start: '## 📌 Duplicate code detection tool report (2)'

0 comments on commit 9d15d4e

Please sign in to comment.