-
Notifications
You must be signed in to change notification settings - Fork 1
208 lines (178 loc) · 5.62 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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
name: BridgeBloc CI
on:
pull_request:
branches:
- main
push:
branches:
- main
env:
SECRET_KEY: ${{ secrets.SECRET_KEY }}
DATABASE_URL: ${{ secrets.DATABASE_URL }}
HUEY_IMMEDIATE: ${{ secrets.HUEY_IMMEDIATE }}
HUEY_REDIS_URL: ${{ secrets.HUEY_REDIS_URL }}
DJANGO_SETTINGS_MODULE: ${{ secrets.DJANGO_SETTINGS_MODULE }}
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
CIRCLE_SANDBOX_API_KEY: ${{ secrets.CIRCLE_SANDBOX_API_KEY }}
CIRCLE_SANDBOX_BASE_URL: ${{ secrets.CIRCLE_SANDBOX_BASE_URL }}
CIRCLE_LIVE_API_KEY: ${{ secrets.CIRCLE_LIVE_API_KEY }}
CIRCLE_LIVE_BASE_URL: ${{ secrets.CIRCLE_LIVE_BASE_URL }}
CIRCLE_MASTER_WALLET_ID: ${{ secrets.CIRCLE_MASTER_WALLET_ID }}
INFURA_API_KEY: ${{ secrets.INFURA_API_KEY }}
PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }}
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
#----------------------------------------------
# Backend linting job
#----------------------------------------------
lint-backend:
name: Backend Lint
runs-on: ubuntu-latest
services:
postgres:
image: postgres:15.3-alpine
env:
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
redis:
image: redis:6-alpine
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 6379:6379
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Load cached poetry installation
id: cached-poetry
uses: actions/cache@v3
with:
path: ~/.local
key: poetry-0
- name: Install Poetry
if: steps.cached-poetry.outputs.cache-hit != 'true'
uses: snok/[email protected]
with:
virtualenvs-create: true
virtualenvs-in-project: true
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v3
with:
path: .venv
key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
working-directory: ./backend
run: poetry install --no-interaction
- name: Run linters
working-directory: ./backend
run: poetry run make lint
#----------------------------------------------
# Backend testing job
#----------------------------------------------
test-backend:
name: Backend Tests
runs-on: ubuntu-latest
needs: ["lint-backend"]
services:
postgres:
image: postgres:15.3-alpine
env:
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
redis:
image: redis:6-alpine
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 6379:6379
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Load cached poetry installation
id: cached-poetry
uses: actions/cache@v3
with:
path: ~/.local
key: poetry-0
- name: Install Poetry
if: steps.cached-poetry.outputs.cache-hit != 'true'
uses: snok/[email protected]
with:
virtualenvs-create: true
virtualenvs-in-project: true
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v3
with:
path: .venv
key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
working-directory: ./backend
run: poetry install --no-interaction
- name: Run DB migrations
working-directory: ./backend
run: poetry run python manage.py migrate
- name: Install pytest annotation plugin
working-directory: ./backend
run: poetry add pytest-github-actions-annotate-failures
- name: Run tests
working-directory: ./backend
run: poetry run make test
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
with:
flags: backend
directory: backend
files: .coverage.xml
#----------------------------------------------
# Smart contract testing job
#----------------------------------------------
test-contracts:
name: Smart Contract Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Nodejs
uses: actions/setup-node@v3
with:
node-version: "16.0.0"
- name: Install dependencies
working-directory: ./contracts
run: yarn --ignore-scripts
- name: Run Eth Mainnet Fork tests
working-directory: ./contracts
run: yarn hardhat --config hardhat-eth-fork.config.ts test ./test/cctp-bridge-eth.spec.ts