mirror of
https://github.com/rommapp/romm.git
synced 2026-03-03 00:27:01 +00:00
Small changes to upgrade Python to version 3.13, and fixes based on a `pyupgrade` run using the `--py313-plus` flag.
25 lines
476 B
YAML
25 lines
476 B
YAML
name: I18N Localization Check
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- "frontend/src/locales/**/*.json"
|
|
|
|
permissions: read-all
|
|
|
|
jobs:
|
|
check-translations:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set up Python 3.13
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: "3.13"
|
|
|
|
- name: Run localization check
|
|
run: python frontend/src/locales/check_i18n_locales.py
|