This repository has been archived by the owner on May 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
94 lines (71 loc) · 1.73 KB
/
ci.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
name: CI
on:
push:
branches: [master]
pull_request:
branches:
- '**'
jobs:
run_tests:
name: Tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04]
python-version: ['3.8']
env:
MYSQL_HOST: "127.0.0.1" # For Django DATABASES setting.
VIRTUAL_ENV: ${{ github.workspace }}/venv
services:
mysql:
image: mysql:5.7
env:
MYSQL_ALLOW_EMPTY_PASSWORD: "yes"
MYSQL_DATABASE: "blockstore_db"
MYSQL_ROOT_PASSWORD: ""
ports:
- 3306:3306
defaults:
run:
working-directory: app
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0 # Need to fetch main branch for diff-cover.
path: app
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Create Virtual Environment
run: python3.8 -m venv $VIRTUAL_ENV
- name: Install Dependencies
run: make requirements-test
- name: Run Tests
run: make test
run_quality:
name: Quality
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04]
python-version: ['3.8']
env:
VIRTUAL_ENV: ${{ github.workspace }}/venv
defaults:
run:
working-directory: app
steps:
- uses: actions/checkout@v2
with:
path: app
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Create Virtual Environment
run: python3.8 -m venv $VIRTUAL_ENV
- name: Install Dependencies
run: make requirements-test
- name: Run Quality
run: make quality