Skip to content

Commit

Permalink
[EDCD#1469] Add Translation Push Check
Browse files Browse the repository at this point in the history
  • Loading branch information
Rixxan committed May 29, 2024
1 parent bc2adfa commit 3dd3652
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/push-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 3dd3652

Please sign in to comment.