mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
38 lines
804 B
YAML
38 lines
804 B
YAML
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
|
|
|
|
|
|
steps:
|
|
- name: Checkout Code
|
|
uses: actions/checkout@v2
|
|
- 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
|