diff options
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/check-translations.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/check-translations.yml b/.github/workflows/check-translations.yml new file mode 100644 index 0000000..82d87c6 --- /dev/null +++ b/.github/workflows/check-translations.yml @@ -0,0 +1,16 @@ +name: Check translations + +on: + workflow_dispatch: + push: + pull_request: + +jobs: + check-translations: + runs-on: ubuntu-latest + steps: + - name: Checkout repo + uses: actions/checkout@v3 + - run: python3 sync_translations.py + - name: Check that strings files are uptodate, run python3 sync_translations.py otherwise + run: git diff --exit-code |
