-
Notifications
You must be signed in to change notification settings - Fork 16
57 lines (48 loc) · 1.42 KB
/
main.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
name: Python package
on: [pull_request]
jobs:
build:
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
runs-on: ubuntu-latest
container: python:${{ matrix.python-version }}
services:
postgres:
image: postgres:12-alpine
env:
POSTGRES_DB: thenewboston
POSTGRES_USER: thenewboston
POSTGRES_PASSWORD: thenewboston
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
redis:
image: redis:alpine
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: pip install -r requirements/local.txt
- name: Lint with flake8
run: flake8 .
- name: Test with pytest
run: pytest .
env:
DJANGO_APPLICATION_ENVIRONMENT: test
REDIS_HOST: redis
POSTGRES_HOST: postgres
POSTGRES_DB: thenewboston
POSTGRES_USER: thenewboston
POSTGRES_PASSWORD: thenewboston
ENVIRONMENT: test
SMTP_USER: ${{ secrets.DEVSMTPUSER }}
SMTP_PASSWORD: ${{ secrets.DEVSMTPPASSWORD }}
SMTP_SERVER: ${{ secrets.SMTPSERVER }}
DEFAULT_FROM_EMAIL: ${{ secrets.EMAILFROM }}