8000 Merge pull request #2096 from weblate/weblate-loot-loot · loot/loot@4a558cd · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Merge pull request #2096 from weblate/weblate-loot-loot #135

Merge pull request #2096 from weblate/weblate-loot-loot

Merge pull request #2096 from weblate/weblate-loot-loot #135

Workflow file for this run

name: 'Validate translation mnemonics'
on:
push:
paths: ['resources/l10n/*/LC_MESSAGES/loot.po']
pull_request:
paths: ['resources/l10n/*/LC_MESSAGES/loot.po']
jobs:
validate:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m venv .venv
./.venv/bin/activate
pip install -r scripts/requirements.txt
- name: Run the validation script
run: python scripts/validate_mnemonics.py
0