mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
0fd1390fe0
* Specify minimum python version for docker build workflow (cherry picked from commit 18c55b30b81aef66c131a960586b52d655a621f9) * Specify python version for translation checker (cherry picked from commit 14360507f5c9d77ed8321755aab25a79fbcf10f9) * Disable social media workflow (has never worked, anyway) (cherry picked from commit 56fbcbeae25b165978d149aa484ae7335f8f67a4)
44 lines
1.1 KiB
YAML
44 lines
1.1 KiB
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
|
|
INVENTREE_BACKUP_DIR: ./backup
|
|
python_version: 3.9
|
|
|
|
steps:
|
|
- name: Checkout Code
|
|
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # pin@v3.1.0
|
|
- name: Set Up Python ${{ env.python_version }}
|
|
uses: actions/setup-python@13ae5bb136fac2878aff31522b9efb785519f984 # pin@v4.3.0
|
|
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
|