2
0
mirror of https://github.com/inventree/demo-dataset.git synced 2025-06-16 12:05:47 +00:00

Check data against stable branch (#84)
Some checks failed
Import Dataset / stable (push) Has been cancelled
Import Dataset / latest (push) Has been cancelled

* Check data against stable branch

* Separate tests for master and stable

* Ensure each allocation has a shipment
This commit is contained in:
Oliver
2024-11-19 00:54:23 +11:00
committed by GitHub
parent 6d9621595e
commit b545c12e5a
2 changed files with 94 additions and 14 deletions

View File

@ -3,12 +3,42 @@ name: Import Dataset
on: ["push", "pull_request"]
jobs:
build:
stable:
runs-on: ubuntu-latest
env:
INVENTREE_DB_ENGINE: sqlite3
INVENTREE_DB_NAME: inventree_db.sqlite3
INVENTREE_DB_NAME: inventree_db_stable.sqlite3
INVENTREE_BACKUP_DIR: $GITHUB_WORKSPACE/path/to/backup
INVENTREE_MEDIA_ROOT: $GITHUB_WORKSPACE/path/to/media
INVENTREE_STATIC_ROOT: $GITHUB_WORKSPACE/path/to/static
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install InvenTree
run: |
sudo apt-get install python3-dev python3-pip python3-venv python3-wheel g++
pip3 install invoke
git clone --depth 1 https://github.com/inventree/inventree inventree -b stable
cd inventree
invoke install
- name: Import Database Records
run: |
cd inventree
invoke migrate
invoke import-records -c -f $GITHUB_WORKSPACE/inventree_data.json
latest:
runs-on: ubuntu-latest
env:
INVENTREE_DB_ENGINE: sqlite3
INVENTREE_DB_NAME: inventree_db_latest.sqlite3
INVENTREE_BACKUP_DIR: $GITHUB_WORKSPACE/path/to/backup
INVENTREE_MEDIA_ROOT: $GITHUB_WORKSPACE/path/to/media
INVENTREE_STATIC_ROOT: $GITHUB_WORKSPACE/path/to/static