Added keys to mfc_default_keys.dic from Metro Q cards from Huston, TX. #149
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 uniq keys | |
on: | |
push: | |
paths: | |
- 'client/dictionaries/**' | |
pull_request: | |
paths: | |
- 'client/dictionaries/**' | |
workflow_dispatch: | |
jobs: | |
check-unique: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: check unique keys in dic files | |
shell: bash | |
run: | | |
find . -type f -name "*.dic" | xargs -I {} sh -c "echo {} && cat {} | sed 's/ *#.*//;/^$/d' | sort | uniq -i -d -c | sort -n -r " | |
if [[ $(find . -type f -name "*.dic" | xargs -I {} sh -c "echo {} && cat {} | sed 's/ *#.*//;/^$/d' | sort | uniq -i -d -c | sort -n -r " | grep -v '^\./' | wc -l) -gt 0 ]]; then exit 1; fi |