1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-12 23:37:14 +03:00

[#1469] Add Translation Push Check

This commit is contained in:
David Sangrey 2024-05-28 21:14:12 -04:00
parent bc2adfa655
commit 3dd3652c59
No known key found for this signature in database
GPG Key ID: 3AEADBB0186884BC

View File

@ -69,3 +69,11 @@ jobs:
- name: mypy type checks
run: |
./scripts/mypy-all.sh --platform win32
- name: translation checks
run: |
output=$(python ./scripts/find_localised_strings.py --compare-lang L10n/en.template --directory . --ignore coriolis-data 2>&1)
if [ -n "$output" ]; then
echo $output
exit 1
fi