InvenTree/.github/workflows/mysql.yaml

47 lines
1.1 KiB
YAML
Raw Normal View History

2021-03-31 06:18:04 +00:00
# MySQL Unit Testing
name: MySQL
on: ["push", "pull_request"]
jobs:
test:
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
2021-03-31 10:17:17 +00:00
INVENTREE_DEBUG: info
2021-03-31 06:18:04 +00:00
services:
mysql:
2021-03-31 06:40:37 +00:00
image: mysql:latest
2021-03-31 06:18:04 +00:00
env:
2021-03-31 06:40:37 +00:00
MYSQL_ALLOW_EMPTY_PASSWORD: yes
MYSQL_USER: inventree
MYSQL_PASSWORD: password
2021-03-31 09:01:02 +00:00
MYSQL_ROOT_PASSWORD: password
2021-03-31 06:40:37 +00:00
options: --health-cmd="mysqladmin ping" --health-interval=5s --health-timeout=2s --health-retries=3
2021-03-31 06:28:30 +00:00
ports:
2021-03-31 06:45:57 +00:00
- 3306:3306
2021-03-31 06:28:30 +00:00
2021-03-31 06:18:04 +00:00
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Install Dependencies
run: |
sudo apt-get install mysql-server libmysqlclient-dev
pip3 install invoke
pip3 install mysqlclient
invoke install
- name: Run Tests
2021-03-31 09:46:26 +00:00
run: invoke test