v0.1.3 #544
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: | |
push: | |
branches: [ "main","devel"] | |
pull_request: | |
branches: [ "main","devel"] | |
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 }} |