-
Notifications
You must be signed in to change notification settings - Fork 0
57 lines (55 loc) · 1.49 KB
/
django-cicd.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: Zadala API
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
SCA:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry==1.5.1 && poetry install --only dev
- name: Lint with flake8
run: |
poetry run flake8 . --statistics
- name: Typehint with mypy
run: |
poetry run mypy .
- name: Check formatting
run: poetry run black . --exclude=venv --check
- name: Check isort imports
run: |
poetry run isort . --check-only
unit-test:
runs-on: ubuntu-latest
services:
postgres:
image: postgres
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: github_actions
ports:
- 5432:5432
steps:
- uses: actions/checkout@v2
- name: Set up Python 3
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry==1.5.1 && poetry install
- name: Run migrations
run: poetry run python manage.py migrate
- name: Test with pytest with coverage
run: poetry run pytest . --cov