All checks were successful
Code and build check / Check code (pull_request) Successful in 1m48s
Code and build check / Build with uv (pull_request) Successful in 56s
Code and build check / Check code (push) Successful in 1m49s
Code and build check / Build with uv (push) Successful in 59s
renovate / renovate (push) Successful in 56s
30 lines
775 B
YAML
30 lines
775 B
YAML
name: Check Translations
|
|
run-name: Check spelling in translation files
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
paths:
|
|
- 'portprotonqt/locales/**'
|
|
pull_request:
|
|
paths:
|
|
- 'portprotonqt/locales/**'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
check-translations:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: https://gitea.com/actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
|
|
|
- name: Set up Python
|
|
uses: https://gitea.com/actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
|
|
with:
|
|
python-version-file: "pyproject.toml"
|
|
|
|
- name: Install Python dependencies
|
|
run: pip install pyaspeller babel
|
|
|
|
- name: Run spell check
|
|
run: python dev-scripts/l10n.py --spellcheck
|