This repository has been archived by the owner on Jul 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 252
50 lines (48 loc) · 1.88 KB
/
python.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: python-sdk
# Trigger the workflow on push or pull request
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 120
strategy:
matrix:
python-version: [3.5,3.6,3.7]
tf-version: [1.14.0,1.15.0]
fail-fast: false
env:
PYTHON: ${{ matrix.python }}
steps:
- uses: actions/checkout@v1
- name: Verify MySQL connection from host
run: |
sudo apt update
sudo apt-get install -y mysql-client
sudo service mysql restart
# default mysql account and password in github actions
mysql -uroot -proot -e "SHOW DATABASES"
- name: Setup submarine database
run: |
mysql -uroot -proot -e "create database submarine_test;"
mysql -uroot -proot -e "CREATE USER 'submarine_test'@'%' IDENTIFIED BY 'password_test';"
mysql -uroot -proot -e "GRANT ALL PRIVILEGES ON *.* TO 'submarine_test'@'%';"
mysql -uroot -proot -e "use submarine_test; source ./docs/database/submarine.sql; show tables;"
- name: Setup python environment
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install --upgrade pip
pip install --no-cache-dir tensorflow==${{ matrix.tf-version }}
pip install --no-cache-dir torch==1.5.0
pip install --no-cache-dir ./submarine-sdk/pysubmarine/.
pip install -r ./submarine-sdk/pysubmarine/github-actions/test-requirements.txt
pip install -r ./submarine-sdk/pysubmarine/github-actions/lint-requirements.txt
- name: Check python sdk code style
if: matrix.python-version == '3.6'
run: |
./submarine-sdk/pysubmarine/github-actions/lint.sh
- name: Test with pytest
run: |
pytest --cov=submarine -vs