mirror of
https://github.com/Julow/Unexpected-Keyboard.git
synced 2024-11-22 15:23:11 +01:00
17 lines
366 B
YAML
17 lines
366 B
YAML
|
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
|