Merge pull request #166 from Virtual4087/main #108
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: Check Duplicates | |
on: | |
pull_request: | |
branches: | |
- main | |
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 }} |