-
Notifications
You must be signed in to change notification settings - Fork 10
65 lines (62 loc) · 1.97 KB
/
ci.yml
File metadata and controls
65 lines (62 loc) · 1.97 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9']
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Set up MySQL
run: |
sudo systemctl start mysql.service
mysql -e 'CREATE DATABASE my_db;' -uroot -proot
- name: Import MySQL schemas
run: |
mysql my_db -uroot -proot < schema/mysql.sql
- name: Start PostgreSQL
run: |
sudo systemctl start postgresql.service
pg_isready
- name: Create PostgreSQL user
run: |
sudo -u postgres psql --command="CREATE USER db_user PASSWORD 'db_password'" --command="\du"
- name: Create PostgreSQL database
run: |
sudo -u postgres createdb --owner=db_user my_db
- name: Import PostgreSQL schema
run: |
psql -h localhost -f schema/postgresql.sql -d my_db -U db_user
env:
PGPASSWORD: db_password
- name: Install deb dependencies
run: |
sudo apt update
sudo apt install pandoc
- name: Install dependencies
run: |
pip install -U pip
pip install pycodestyle coverage pytest pypandoc
python setup.py install
- name: Run pycodestyle
run: |
pycodestyle --exclude=venv --ignore=E501 .
- name: Run pytest
run: |
coverage run --source=. -m pytest
- name: Generate coverage report
run: |
coverage report -m
- name: Upload coverage reports to Codecov
run: |
curl -Os https://uploader.codecov.io/latest/linux/codecov
chmod +x codecov
./codecov -t ${CODECOV_TOKEN}