-
Notifications
You must be signed in to change notification settings - Fork 53
53 lines (46 loc) · 1.34 KB
/
ci_py.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
name: PY SDK CI
on:
pull_request:
paths:
- 'sdk/embedbase-py/**'
push:
branches:
- main
- next
- rc
paths:
- 'sdk/embedbase-py/**'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
- name: Set up cache
uses: actions/cache@v2.1.6
with:
path: sdk/embedbase-py/.venv
key: venv-${{ matrix.python-version }}-${{ hashFiles('sdk/embedbase-py/pyproject.toml') }}-${{ hashFiles('sdk/embedbase-py/poetry.lock') }}
- name: Install dependencies
run: |
poetry config virtualenvs.in-project true
poetry install
working-directory: sdk/embedbase-py
- name: Run tests
run: |
make test
env:
EMBEDBASE_API_KEY: ${{ secrets.EMBEDBASE_API_KEY }}
BANKRUPT_EMBEDBASE_KEY: ${{ secrets.BANKRUPT_EMBEDBASE_KEY }}
# necessary hack otherwise ci running in parallel create concurrency issues
EMBEDBASE_DATASET: ci_sdk_py_unit_test
working-directory: sdk/embedbase-py