New Crowdin updates #163
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check Translations | |
on: | |
push: | |
branches: | |
- l10 | |
pull_request: | |
branches: | |
- l10 | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
INVENTREE_DB_NAME: './test_db.sqlite' | |
INVENTREE_DB_ENGINE: django.db.backends.sqlite3 | |
INVENTREE_DEBUG: info | |
INVENTREE_MEDIA_ROOT: ./media | |
INVENTREE_STATIC_ROOT: ./static | |
INVENTREE_BACKUP_DIR: ./backup | |
python_version: 3.9 | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # [email protected] | |
- name: Set Up Python ${{ env.python_version }} | |
uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # [email protected] | |
with: | |
python-version: ${{ env.python_version }} | |
cache: 'pip' | |
- name: Install Dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install gettext | |
pip3 install invoke | |
invoke install | |
- name: Test Translations | |
run: invoke translate | |
- name: Check Migration Files | |
run: python3 ci/check_migration_files.py |