InvenTree/.github/workflows/pr_checks.yaml

304 lines
8.2 KiB
YAML
Raw Normal View History

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
2021-12-02 12:25:01 +00:00
coverage:
name: Sqlite / coverage
needs: ['javascript', 'html']
runs-on: ubuntu-latest
env:
2021-12-02 12:29:01 +00:00
INVENTREE_DB_ENGINE: sqlite3
2021-12-02 12:25:01 +00:00
steps:
- name: Checkout Code
uses: actions/checkout@v2
2021-12-02 12:25:50 +00:00
- name: Setup Python ${{ env.python_version }}
2021-12-02 12:25:01 +00:00
uses: actions/setup-python@v2
with:
2021-12-02 12:25:50 +00:00
python-version: ${{ env.python_version }}
2021-12-02 12:25:01 +00:00
- name: Install Dependencies
run: |
sudo apt-get update
sudo apt-get install gettext
pip3 install invoke
invoke install
invoke static
- name: Coverage Tests
run: |
invoke coverage
- name: Data Import Export
run: |
invoke migrate
invoke import-fixtures
invoke export-records -f data.json
2021-12-02 12:29:01 +00:00
rm ${{ env.INVENTREE_DB_NAME }}.sqlite
2021-12-02 12:25:01 +00:00
invoke migrate
invoke import-records -f data.json
invoke import-records -f data.json
- name: Test Translations
run: invoke translate
- name: Check Migration Files
run: python3 ci/check_migration_files.py
- name: Upload Coverage Report
run: coveralls
2021-12-02 12:34:01 +00:00
postgres:
name: Postgres
needs: ['javascript', 'html']
runs-on: ubuntu-latest
env:
INVENTREE_DB_ENGINE: django.db.backends.postgresql
INVENTREE_DB_USER: inventree
INVENTREE_DB_PASSWORD: password
INVENTREE_DB_HOST: '127.0.0.1'
INVENTREE_DB_PORT: 5432
INVENTREE_DEBUG: info
INVENTREE_CACHE_HOST: localhost
services:
postgres:
image: postgres
env:
POSTGRES_USER: inventree
POSTGRES_PASSWORD: password
ports:
- 5432:5432
redis:
image: redis
ports:
- 6379:6379
steps:
- name: Checkout Code
uses: actions/checkout@v2
2021-12-02 12:34:55 +00:00
- name: Setup Python ${{ env.python_version }}
2021-12-02 12:34:01 +00:00
uses: actions/setup-python@v2
with:
2021-12-02 12:34:55 +00:00
python-version: ${{ env.python_version }}
2021-12-02 12:34:01 +00:00
- name: Install Dependencies
run: |
sudo apt-get install libpq-dev
pip3 install invoke
pip3 install psycopg2
pip3 install django-redis>=5.0.0
invoke install
- name: Run Tests
run: invoke test
- name: Data Import Export
run: |
invoke migrate
python3 ./InvenTree/manage.py flush --noinput
invoke import-fixtures
invoke export-records -f data.json
python3 ./InvenTree/manage.py flush --noinput
invoke import-records -f data.json
invoke import-records -f data.json
2021-12-02 12:37:26 +00:00
mysql:
name: MySql
needs: ['javascript', 'html']
runs-on: ubuntu-latest
env:
# Database backend configuration
INVENTREE_DB_ENGINE: django.db.backends.mysql
INVENTREE_DB_USER: root
INVENTREE_DB_PASSWORD: password
INVENTREE_DB_HOST: '127.0.0.1'
INVENTREE_DB_PORT: 3306
INVENTREE_DEBUG: info
services:
mysql:
image: mysql:latest
env:
MYSQL_ALLOW_EMPTY_PASSWORD: yes
MYSQL_DATABASE: inventree
MYSQL_USER: inventree
MYSQL_PASSWORD: password
MYSQL_ROOT_PASSWORD: password
options: --health-cmd="mysqladmin ping" --health-interval=5s --health-timeout=2s --health-retries=3
ports:
- 3306:3306
steps:
- name: Checkout Code
uses: actions/checkout@v2
2021-12-02 12:37:53 +00:00
- name: Setup Python ${{ env.python_version }}
2021-12-02 12:37:26 +00:00
uses: actions/setup-python@v2
with:
2021-12-02 12:37:53 +00:00
python-version: ${{ env.python_version }}
2021-12-02 12:37:26 +00:00
- name: Install Dependencies
run: |
sudo apt-get install mysql-server libmysqlclient-dev
pip3 install invoke
pip3 install mysqlclient
invoke install
- name: Run Tests
run: invoke test
- name: Data Import Export
run: |
invoke migrate
python3 ./InvenTree/manage.py flush --noinput
invoke import-fixtures
invoke export-records -f data.json
python3 ./InvenTree/manage.py flush --noinput
invoke import-records -f data.json
invoke import-records -f data.json