Added github action and updated check-dups.sh

This commit is contained in:
milinddethe15
2023-10-14 19:45:48 +05:30
parent 8bf68a52bd
commit 5d4ad39cc9
2 changed files with 39 additions and 10 deletions
+20
View File
@@ -0,0 +1,20 @@
name: Check Duplicates
on:
pull_request:
push:
branches:
- main
jobs:
check-duplicates:
runs-on: ubuntu-latest
steps:
- name: Check Out Code
uses: actions/checkout@v2
- name: Run Check Duplicates Script
run: |
chmod +x scripts/check-dups.sh
./scripts/check-dups.sh
working-directory: ${{ github.workspace }}