InvenTree/.github/workflows/qc_checks.yaml

265 lines
6.6 KiB
YAML
Raw Normal View History

2021-12-03 00:18:31 +00:00
# Checks for each PR / push
2021-09-12 11:36:14 +00:00
2021-12-03 00:18:31 +00:00
name: QC 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:
2022-05-15 13:52:55 +00:00
python_version: 3.9
2021-12-02 11:47:04 +00:00
node_version: 16
2022-05-27 19:16:31 +00:00
# The OS version must be set per job
2021-12-02 23:34:35 +00:00
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
2021-12-02 11:47:04 +00:00
INVENTREE_DB_NAME: inventree
INVENTREE_MEDIA_ROOT: ../test_inventree_media
INVENTREE_STATIC_ROOT: ../test_inventree_static
2021-12-02 11:30:44 +00:00
2021-09-12 11:36:14 +00:00
jobs:
2021-12-02 11:30:44 +00:00
pep_style:
2022-05-27 21:03:20 +00:00
name: Style [Python]
2022-05-27 19:16:31 +00:00
runs-on: ubuntu-20.04
2021-12-02 11:30:44 +00:00
steps:
2022-05-27 22:41:29 +00:00
- uses: actions/checkout@v1
2022-05-27 20:08:55 +00:00
- name: Enviroment Setup
2022-05-27 22:41:29 +00:00
uses: ./.github/actions/setup
2021-12-02 11:30:44 +00:00
with:
2022-05-27 20:08:55 +00:00
install: true
2022-05-27 22:59:40 +00:00
- name: Run flake8
2022-05-27 21:03:20 +00:00
run: flake8 InvenTree --extend-ignore=D
2021-12-02 11:47:04 +00:00
javascript:
2022-05-27 21:03:20 +00:00
name: Style [JS]
2022-05-27 19:16:31 +00:00
runs-on: ubuntu-20.04
2021-12-02 11:47:04 +00:00
2022-05-27 21:03:20 +00:00
needs: pep_style
2021-12-02 11:47:04 +00:00
steps:
2022-05-27 22:41:29 +00:00
- uses: actions/checkout@v1
2022-05-27 20:08:55 +00:00
- name: Enviroment Setup
2022-05-27 22:41:29 +00:00
uses: ./.github/actions/setup
2021-12-02 11:47:04 +00:00
with:
2022-05-27 20:08:55 +00:00
npm: true
2022-05-27 21:22:26 +00:00
install: true
2022-05-27 22:59:40 +00:00
- name: Check Templated JS Files
2021-12-02 11:47:04 +00:00
run: |
cd ci
2022-05-27 18:33:02 +00:00
python3 check_js_templates.py
2021-12-02 11:47:04 +00:00
- name: Lint Javascript Files
run: |
invoke render-js-files
npx eslint js_tmp/*.js
2021-12-02 11:49:37 +00:00
html:
2022-05-27 21:03:20 +00:00
name: Style [HTML]
2022-05-27 19:16:31 +00:00
runs-on: ubuntu-20.04
2021-12-02 11:49:37 +00:00
2022-05-27 21:03:20 +00:00
needs: pep_style
2021-12-02 11:49:37 +00:00
steps:
2022-05-27 22:41:29 +00:00
- uses: actions/checkout@v1
2022-05-27 20:08:55 +00:00
- name: Enviroment Setup
2022-05-27 22:41:29 +00:00
uses: ./.github/actions/setup
2021-12-02 11:49:37 +00:00
with:
2022-05-27 20:08:55 +00:00
npm: true
2022-05-27 21:22:26 +00:00
install: true
2021-12-02 11:49:37 +00:00
- name: Check HTML Files
2022-05-27 21:03:20 +00:00
run: npx markuplint **/templates/*.html
2021-12-02 12:14:38 +00:00
2022-05-27 16:52:34 +00:00
pre-commit:
name: Style [pre-commit]
2022-05-27 19:16:31 +00:00
runs-on: ubuntu-20.04
2022-05-27 21:03:20 +00:00
needs: pep_style
2022-05-27 16:52:34 +00:00
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ env.python_version }}
uses: actions/setup-python@v2
with:
python-version: ${{ env.python_version }}
cache: 'pip'
2022-05-27 22:59:40 +00:00
- name: Run pre-commit Checks
uses: pre-commit/action@v2.0.3
2022-05-27 16:52:34 +00:00
2021-12-02 12:14:38 +00:00
python:
2022-05-27 21:03:20 +00:00
name: Tests - inventree-python
2022-05-27 19:16:31 +00:00
runs-on: ubuntu-20.04
2021-12-02 12:14:38 +00:00
2022-05-27 21:03:20 +00:00
needs: pre-commit
2021-12-02 12:17:45 +00:00
env:
wrapper_name: inventree-python
INVENTREE_DB_ENGINE: django.db.backends.sqlite3
INVENTREE_DB_NAME: ../inventree_unit_test_db.sqlite3
INVENTREE_ADMIN_USER: testuser
INVENTREE_ADMIN_PASSWORD: testpassword
INVENTREE_ADMIN_EMAIL: test@test.com
INVENTREE_PYTHON_TEST_SERVER: http://localhost:12345
INVENTREE_PYTHON_TEST_USERNAME: testuser
INVENTREE_PYTHON_TEST_PASSWORD: testpassword
2021-12-02 12:17:45 +00:00
2021-12-02 12:14:38 +00:00
steps:
2022-05-27 22:41:29 +00:00
- uses: actions/checkout@v1
2022-05-27 20:08:55 +00:00
- name: Enviroment Setup
2022-05-27 22:41:29 +00:00
uses: ./.github/actions/setup
2022-05-27 18:12:31 +00:00
with:
2022-05-27 21:03:20 +00:00
apt-dependency: gettext
2022-05-27 20:08:55 +00:00
update: true
2022-05-27 22:59:40 +00:00
- name: Download Python Code For `${{ env.wrapper_name }}`
2022-05-27 21:03:20 +00:00
run: git clone --depth 1 https://github.com/inventree/${{ env.wrapper_name }} ./${{ env.wrapper_name }}
2022-05-27 22:59:40 +00:00
- name: Start InvenTree Server
2021-12-02 12:14:38 +00:00
run: |
invoke delete-data -f
invoke import-fixtures
invoke server -a 127.0.0.1:12345 &
invoke wait
2022-05-27 22:59:40 +00:00
- name: Run Tests For `${{ env.wrapper_name }}`
2021-12-02 12:14:38 +00:00
run: |
2021-12-02 12:17:45 +00:00
cd ${{ env.wrapper_name }}
invoke check-server
2022-05-12 01:00:43 +00:00
coverage run -m unittest discover -s test/
2021-12-02 12:25:01 +00:00
2022-05-27 22:35:04 +00:00
docstyle:
name: Style [Python Docstrings]
runs-on: ubuntu-20.04
needs: pre-commit
continue-on-error: true
steps:
2022-05-27 23:11:16 +00:00
- uses: actions/checkout@v1
2022-05-27 22:35:04 +00:00
- name: Enviroment Setup
2022-05-27 23:11:16 +00:00
uses: ./.github/actions/setup
2022-05-27 22:35:04 +00:00
with:
install: true
2022-05-27 23:11:16 +00:00
- name: Run flake8
2022-05-27 22:35:04 +00:00
run: flake8 InvenTree
2021-12-02 12:25:01 +00:00
coverage:
2022-05-27 21:03:20 +00:00
name: Tests - DB [SQLite] + Coverage
2022-05-27 19:16:31 +00:00
runs-on: ubuntu-20.04
2021-12-02 12:25:01 +00:00
2022-05-27 21:03:20 +00:00
needs: ['javascript', 'html', 'pre-commit']
2022-05-27 22:30:30 +00:00
continue-on-error: true # continue if a step fails so that coverage gets pushed
2022-05-27 21:03:20 +00:00
2021-12-02 12:25:01 +00:00
env:
2021-12-03 00:05:14 +00:00
INVENTREE_DB_NAME: ./inventree.sqlite
2021-12-02 12:29:01 +00:00
INVENTREE_DB_ENGINE: sqlite3
INVENTREE_PLUGINS_ENABLED: true
2021-12-02 12:25:01 +00:00
steps:
2022-05-27 22:41:29 +00:00
- uses: actions/checkout@v1
2022-05-27 20:08:55 +00:00
- name: Enviroment Setup
2022-05-27 22:41:29 +00:00
uses: ./.github/actions/setup
2021-12-02 12:25:01 +00:00
with:
2022-05-27 21:03:20 +00:00
apt-dependency: gettext
2022-05-27 20:08:55 +00:00
update: true
2021-12-02 12:25:01 +00:00
- name: Coverage Tests
2022-05-27 21:03:20 +00:00
run: invoke coverage
2022-05-27 21:36:14 +00:00
- name: Data Export Test
2022-05-27 22:41:29 +00:00
uses: ./.github/actions/migration
2022-05-20 11:20:55 +00:00
- name: Test Translations
2021-12-02 12:25:01 +00:00
run: invoke translate
- name: Check Migration Files
run: python3 ci/check_migration_files.py
2021-12-02 23:28:53 +00:00
- name: Upload Coverage Report
run: coveralls
2021-12-02 12:34:01 +00:00
postgres:
2022-05-27 21:03:20 +00:00
name: Tests - DB [PostgreSQL]
2022-05-27 19:16:31 +00:00
runs-on: ubuntu-20.04
2022-05-27 21:03:20 +00:00
needs: ['javascript', 'html', 'pre-commit']
2022-05-11 04:16:39 +00:00
if: github.event_name == 'push'
2021-12-02 12:34:01 +00:00
env:
INVENTREE_DB_ENGINE: django.db.backends.postgresql
2021-12-03 00:03:32 +00:00
INVENTREE_DB_USER: inventree
INVENTREE_DB_PASSWORD: password
2021-12-02 23:34:35 +00:00
INVENTREE_DB_HOST: '127.0.0.1'
INVENTREE_DB_PORT: 5432
INVENTREE_DEBUG: info
2021-12-02 12:34:01 +00:00
INVENTREE_CACHE_HOST: localhost
INVENTREE_PLUGINS_ENABLED: true
2021-12-02 12:34:01 +00:00
services:
postgres:
image: postgres
2021-12-02 22:42:21 +00:00
env:
2021-12-03 00:03:32 +00:00
POSTGRES_USER: inventree
POSTGRES_PASSWORD: password
2021-12-02 12:34:01 +00:00
ports:
2021-12-02 23:34:35 +00:00
- 5432:5432
2021-12-02 12:34:01 +00:00
redis:
image: redis
ports:
- 6379:6379
steps:
2022-05-27 22:41:29 +00:00
- uses: actions/checkout@v1
2022-05-27 20:08:55 +00:00
- name: Enviroment Setup
2022-05-27 22:41:29 +00:00
uses: ./.github/actions/setup
2021-12-02 12:34:01 +00:00
with:
2022-05-27 21:03:20 +00:00
apt-dependency: gettext libpq-dev
2022-05-27 20:08:55 +00:00
pip-dependency: psycopg2 django-redis>=5.0.0
2022-05-27 21:03:20 +00:00
update: true
2021-12-02 12:34:01 +00:00
- name: Run Tests
run: invoke test
2022-05-27 21:36:14 +00:00
- name: Data Export Test
2022-05-27 22:41:29 +00:00
uses: ./.github/actions/migration
2021-12-02 12:34:01 +00:00
2021-12-02 12:37:26 +00:00
mysql:
2022-05-27 21:03:20 +00:00
name: Tests - DB [MySQL]
2022-05-27 19:16:31 +00:00
runs-on: ubuntu-20.04
2022-05-27 21:03:20 +00:00
needs: ['javascript', 'html', 'pre-commit']
2022-05-11 04:16:39 +00:00
if: github.event_name == 'push'
2021-12-02 12:37:26 +00:00
env:
# Database backend configuration
INVENTREE_DB_ENGINE: django.db.backends.mysql
2021-12-02 23:34:35 +00:00
INVENTREE_DB_USER: root
2021-12-03 00:03:32 +00:00
INVENTREE_DB_PASSWORD: password
2021-12-02 23:34:35 +00:00
INVENTREE_DB_HOST: '127.0.0.1'
INVENTREE_DB_PORT: 3306
INVENTREE_DEBUG: info
INVENTREE_PLUGINS_ENABLED: true
2021-12-02 12:37:26 +00:00
services:
mysql:
image: mysql:latest
env:
MYSQL_ALLOW_EMPTY_PASSWORD: yes
2021-12-02 12:39:12 +00:00
MYSQL_DATABASE: ${{ env.INVENTREE_DB_NAME }}
2021-12-03 00:03:32 +00:00
MYSQL_USER: inventree
MYSQL_PASSWORD: password
MYSQL_ROOT_PASSWORD: password
2021-12-02 12:37:26 +00:00
options: --health-cmd="mysqladmin ping" --health-interval=5s --health-timeout=2s --health-retries=3
ports:
2021-12-02 23:34:35 +00:00
- 3306:3306
2021-12-02 12:37:26 +00:00
steps:
2022-05-27 22:41:29 +00:00
- uses: actions/checkout@v1
2022-05-27 20:08:55 +00:00
- name: Enviroment Setup
2022-05-27 22:41:29 +00:00
uses: ./.github/actions/setup
2021-12-02 12:37:26 +00:00
with:
2022-05-27 21:03:20 +00:00
apt-dependency: gettext libmysqlclient-dev
2022-05-27 20:08:55 +00:00
pip-dependency: mysqlclient
2022-05-27 21:03:20 +00:00
update: true
2021-12-02 12:37:26 +00:00
- name: Run Tests
run: invoke test
2022-05-27 21:36:14 +00:00
- name: Data Export Test
2022-05-27 22:41:29 +00:00
uses: ./.github/actions/migration