-
Notifications
You must be signed in to change notification settings - Fork 4
51 lines (42 loc) · 1.16 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
name: alaltalk CI
on:
pull_request:
branches:
- "**"
jobs:
checks:
runs-on: ubuntu-20.04
environment: CI
env:
PIPENV_VENV_IN_PROJECT: enable
services:
mysql:
image: mysql:8.0
env:
MYSQL_DATABASE: alaltalk
MYSQL_ROOT_PASSWORD: alaltalk
ports:
- 33306:3306
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
redis:
image: redis
ports:
- 6379:6379
options: --health-cmd "redis-cli ping" --health-interval=10s --health-timeout=5s --health-retries=3
steps:
- name: Checkout source code
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: "3.8.10"
- name: Install pipenv
run: |
python -m pip install --upgrade pipenv wheel
- name: Install dependencies
run: |
pipenv install
- name: Run tests
id: run_test
run: |
pipenv run pytest