26 lines
526 B
YAML
26 lines
526 B
YAML
name: Check locale
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- 'localization/**'
|
|
- ".github/workflows/check_locale.yml"
|
|
|
|
jobs:
|
|
check_translation:
|
|
name: Check translation
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Install gettext
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y gettext
|
|
|
|
- name: Check translation format
|
|
run: |
|
|
./run_gettext.sh
|