2021-12-02 11:28:10 +00:00
|
|
|
# Checks for each PR
|
2021-09-12 11:36:14 +00:00
|
|
|
|
2021-12-02 11:28:10 +00:00
|
|
|
name: PR checks
|
2021-09-12 11:36:14 +00:00
|
|
|
|
|
|
|
on:
|
2021-12-02 11:30:44 +00:00
|
|
|
push:
|
|
|
|
branches-ignore:
|
|
|
|
- l10*
|
|
|
|
|
2021-09-12 11:36:14 +00:00
|
|
|
pull_request:
|
|
|
|
branches-ignore:
|
|
|
|
- l10*
|
|
|
|
|
2021-12-02 11:35:08 +00:00
|
|
|
env:
|
|
|
|
python_version: 3.7
|
2021-12-02 11:47:04 +00:00
|
|
|
node_version: 16
|
|
|
|
|
2021-12-02 12:17:45 +00:00
|
|
|
server_start_sleep: 60
|
|
|
|
|
2021-12-02 11:47:04 +00:00
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
INVENTREE_DB_ENGINE: sqlite3
|
|
|
|
INVENTREE_DB_NAME: inventree
|
|
|
|
INVENTREE_MEDIA_ROOT: ./media
|
|
|
|
INVENTREE_STATIC_ROOT: ./static
|
2021-12-02 11:35:08 +00:00
|
|
|
|
2021-12-02 11:30:44 +00:00
|
|
|
|
2021-09-12 11:36:14 +00:00
|
|
|
jobs:
|
|
|
|
|
2021-12-02 11:28:10 +00:00
|
|
|
check_version:
|
2021-12-02 11:46:31 +00:00
|
|
|
name: version number
|
2021-09-12 11:36:14 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
2021-09-12 11:40:56 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout Code
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Check version number
|
|
|
|
run: |
|
2021-09-12 12:06:06 +00:00
|
|
|
python3 ci/check_version_number.py --branch ${{ github.base_ref }}
|
2021-12-02 11:30:44 +00:00
|
|
|
|
|
|
|
pep_style:
|
2021-12-02 11:46:31 +00:00
|
|
|
name: PEP style (python)
|
2021-12-02 11:30:44 +00:00
|
|
|
needs: check_version
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v2
|
2021-12-02 11:35:08 +00:00
|
|
|
- name: Set up Python ${{ env.python_version }}
|
2021-12-02 11:30:44 +00:00
|
|
|
uses: actions/setup-python@v2
|
|
|
|
with:
|
2021-12-02 11:35:08 +00:00
|
|
|
python-version: ${{ env.python_version }}
|
2021-12-02 11:30:44 +00:00
|
|
|
- name: Install deps
|
|
|
|
run: |
|
|
|
|
pip install flake8==3.8.3
|
|
|
|
pip install pep8-naming==0.11.1
|
|
|
|
- name: flake8
|
|
|
|
run: |
|
|
|
|
flake8 InvenTree
|
2021-12-02 11:47:04 +00:00
|
|
|
|
|
|
|
javascript:
|
|
|
|
name: javascript template files
|
|
|
|
needs: pep_style
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout Code
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Install node.js ${{ env.node_version }}
|
|
|
|
uses: actions/setup-node@v2
|
|
|
|
with:
|
|
|
|
node-version: ${{ env.node_version }}
|
|
|
|
- run: npm install
|
|
|
|
- name: Setup Python
|
|
|
|
uses: actions/setup-python@v2
|
|
|
|
with:
|
|
|
|
python-version: ${{ env.python_version }}
|
|
|
|
- name: Install Dependencies
|
|
|
|
run: |
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install gettext
|
|
|
|
pip3 install invoke
|
|
|
|
invoke install
|
|
|
|
invoke static
|
|
|
|
- name: Check Templated Files
|
|
|
|
run: |
|
|
|
|
cd ci
|
|
|
|
python check_js_templates.py
|
|
|
|
- name: Lint Javascript Files
|
|
|
|
run: |
|
|
|
|
invoke render-js-files
|
|
|
|
npx eslint js_tmp/*.js
|
2021-12-02 11:49:37 +00:00
|
|
|
|
|
|
|
html:
|
|
|
|
name: html template files
|
2021-12-02 12:01:55 +00:00
|
|
|
needs: pep_style
|
2021-12-02 11:49:37 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout Code
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Install node.js ${{ env.node_version }}
|
|
|
|
uses: actions/setup-node@v2
|
|
|
|
with:
|
|
|
|
node-version: ${{ env.node_version }}
|
|
|
|
- run: npm install
|
|
|
|
- name: Setup Python
|
|
|
|
uses: actions/setup-python@v2
|
|
|
|
with:
|
|
|
|
python-version: ${{ env.python_version }}
|
|
|
|
- name: Install Dependencies
|
|
|
|
run: |
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install gettext
|
|
|
|
pip3 install invoke
|
|
|
|
invoke install
|
|
|
|
invoke static
|
|
|
|
- name: Check HTML Files
|
|
|
|
run: |
|
|
|
|
npx markuplint InvenTree/build/templates/build/*.html
|
|
|
|
npx markuplint InvenTree/company/templates/company/*.html
|
|
|
|
npx markuplint InvenTree/order/templates/order/*.html
|
|
|
|
npx markuplint InvenTree/part/templates/part/*.html
|
|
|
|
npx markuplint InvenTree/stock/templates/stock/*.html
|
|
|
|
npx markuplint InvenTree/templates/*.html
|
|
|
|
npx markuplint InvenTree/templates/InvenTree/*.html
|
|
|
|
npx markuplint InvenTree/templates/InvenTree/settings/*.html
|
2021-12-02 12:14:38 +00:00
|
|
|
|
|
|
|
python:
|
|
|
|
name: python bindings
|
|
|
|
needs: pep_style
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
2021-12-02 12:17:45 +00:00
|
|
|
env:
|
|
|
|
wrapper_name: inventree-python
|
|
|
|
|
2021-12-02 12:14:38 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout Code
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Install InvenTree
|
|
|
|
run: |
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install python3-dev python3-pip python3-venv
|
|
|
|
pip3 install invoke
|
|
|
|
invoke install
|
|
|
|
invoke migrate
|
|
|
|
- name: Download Python Code
|
|
|
|
run: |
|
2021-12-02 12:17:45 +00:00
|
|
|
git clone --depth 1 https://github.com/inventree/${{ env.wrapper_name }} ./${{ env.wrapper_name }}
|
2021-12-02 12:14:38 +00:00
|
|
|
- name: Start Server
|
|
|
|
run: |
|
2021-12-02 12:17:45 +00:00
|
|
|
invoke import-records -f ./${{ env.wrapper_name }}/test/test_data.json
|
2021-12-02 12:14:38 +00:00
|
|
|
invoke server -a 127.0.0.1:8000 &
|
2021-12-02 12:17:45 +00:00
|
|
|
sleep ${{ env.server_start_sleep }}
|
2021-12-02 12:14:38 +00:00
|
|
|
- name: Run Tests
|
|
|
|
run: |
|
2021-12-02 12:17:45 +00:00
|
|
|
cd ${{ env.wrapper_name }}
|
2021-12-02 12:14:38 +00:00
|
|
|
invoke test
|