-
Notifications
You must be signed in to change notification settings - Fork 20
64 lines (64 loc) · 1.99 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
name: CI
on: [push, pull_request]
jobs:
ci:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:latest
env:
POSTGRES_PASSWORD: postgres
POSTGRES_DB: test_database_name
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:
- uses: actions/checkout@v3
- name: Set up Python 3.12
uses: actions/setup-python@v4
with:
python-version: 3.12
- uses: actions/cache@v3
name: Cache dependencies
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements_dev.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements_dev.txt
- name: Lint - flake8
run: flake8
- name: Lint - black
run: black . --check
- name: Lint - isort
run: isort . --check-only
- name: Fetch data
run: ./fetch_data.sh
- name: Fetch stats
run: |
mkdir out
./partial_stats_for_unit_tests.sh
- name: Set up django
env:
DATABASE_URL: "postgres://postgres:postgres@localhost:5432/test_database_name"
run: |
python manage.py collectstatic
python manage.py migrate
python manage.py dashboard_import
- name: Run non-django tests
env:
DATABASE_URL: "postgres://postgres:postgres@localhost:5432/test_database_name"
run: pytest --cov .
- name: Run django tests
env:
DATABASE_URL: "postgres://postgres:postgres@localhost:5432/test_database_name"
run: python manage.py test
# - name: Coveralls
# run: coveralls --service=github-actions
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}