-
Notifications
You must be signed in to change notification settings - Fork 20
95 lines (82 loc) · 2.38 KB
/
integration-flat_file-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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
name: Flat File Integration CI
on:
pull_request:
paths:
- "grai-integrations/source-flat-file/**"
- "grai-client/**"
- "grai-server/**"
concurrency:
group: ${{ github.ref }}-integration-flat_file-ci
cancel-in-progress: true
env:
py_ver: "3.10"
poetry_ver: "1.2.2"
project_dir: "grai-integrations/source-flat-file"
jobs:
lint-integration-flat_file:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ${{ env.project_dir }}
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- name: Install Python
id: setup-python
uses: actions/setup-python@v4
with:
python-version: "${{ env.py_ver }}"
- run: pip install black isort
- run: |
black . --check
isort . --profile black --check
tests-integration-flat_file:
needs: lint-integration-flat_file
runs-on: ubuntu-latest
defaults:
run:
working-directory: ${{ env.project_dir }}
services:
postgres:
image: postgres:latest
env:
POSTGRES_USER: grai
POSTGRES_PASSWORD: grai
POSTGRES_DB: grai
ports:
- 5432:5432
# needed because the postgres container does not provide a healthcheck
options: --health-cmd pg_isready --health-interval 2s --health-timeout 5s --health-retries 15
redis:
image: redis/redis-stack-server:6.2.6-v9
ports:
- 6379:6379
the_guide:
image: ghcr.io/grai-io/grai-core/grai-server:latest
env:
DB_USER: grai
DB_PASSWORD: grai
DB_NAME: grai
DB_PORT: "5432"
DB_HOST: "postgres"
DJANGO_SUPERUSER_USERNAME: null@grai.io
DJANGO_SUPERUSER_PASSWORD: super_secret
CELERY_BROKER_URL: redis://redis:6379/0
CELERY_RESULT_BACKEND: redis://redis:6379/0
REDIS_GRAPH_CACHE_HOST: redis
ports:
- 8000:8000
options: >-
--health-cmd "curl -f http://localhost:8000/health/ || exit 1"
--health-interval 2s
--health-retries 10
--health-start-period 90s
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "${{ env.py_ver }}"
- run: |
pip install pytest
pip install .
- run: pytest