-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (63 loc) · 2.01 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
name: Django CI Workflow
on:
pull_request:
branches:
- main
push:
branches:
- main
env:
SECRET_KEY: "somethingTh@tIsOnlyUs3dForT3sting"
DATABASE_URL: "postgres://postgres:[email protected]:5432/github-actions"
jobs:
health-check-job:
runs-on: ubuntu-latest
services:
postgres:
image: postgres
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: github-actions
ports:
- 5432:5432
# needed because the postgres container does not provide a healthcheck
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Cache dependency
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Setup python environment
uses: actions/setup-python@v2
with:
python-version: "3.10.2"
- name: Check Python version
run: python --version
- name: Install requirements
run: pip install -r requirements.txt
- name: Migrate DB
run: python manage.py migrate
- name: Collect static files
run: python manage.py collectstatic
- name: Run tests with coverage
run: coverage run manage.py test && coverage xml
- name: Submit coverage to Codecov
uses: codecov/codecov-action@v2
with:
fail_ci_if_error: true # optional (default = false)
files: ./coverage.xml
- name: Create Sentry release
if: github.event_name != 'pull_request'
uses: getsentry/action-release@v1
env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }}
with:
environment: production