-
Notifications
You must be signed in to change notification settings - Fork 23
69 lines (57 loc) · 1.76 KB
/
run_tests.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
name: Test Suite
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
test:
name: Python ${{ matrix.python-version }} - ${{ matrix.connection }} [redis-stack ${{matrix.redis-stack-version}}]
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11"]
# python-version: ["3.9", "3.10", "3.11"]
redis-stack-version: ['latest']
# python-version: [3.9, 3.10, 3.11] # idk if we need all of this for a demo repo
# connection: ['hiredis', 'plain']
# redis-stack-version: ['6.2.6-v9', 'latest', 'edge']
services:
redis:
image: redis/redis-stack-server:${{matrix.redis-stack-version}}
ports:
- 6379:6379
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Install dependencies
working-directory: ./backend
run: |
poetry install --all-extras
# - name: Install hiredis if needed
# if: matrix.connection == 'hiredis'
# run: |
# poetry add hiredis
- name: Set Redis version
run: |
echo "REDIS_VERSION=${{ matrix.redis-stack-version }}" >> $GITHUB_ENV
# - name: Authenticate to Google Cloud
# uses: google-github-actions/auth@v1
# with:
# credentials_json: ${{ secrets.GOOGLE_CREDENTIALS }}
- name: Run tests
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
COHERE_API_KEY: ${{ secrets.COHERE_API_KEY }}
working-directory: ./backend
run: |
poetry run test