-
Notifications
You must be signed in to change notification settings - Fork 2
64 lines (50 loc) · 1.46 KB
/
ci.yaml
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:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
Linting:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
enable-cache: true
- name: Set up Python
run: uv python install
- name: Install the project
run: uv sync --all-extras --dev
- name: Lint with ruff
run: |
make lint
Build:
runs-on: ubuntu-latest
# There is an issue with infinitely running tests when something fails due to failure to close the WebSocket, so we set a timeout.
timeout-minutes: 5
strategy:
matrix:
# If we test it against too many versions, we are making unnecessary
# requests to the production server.
python-version: ["3.8", "3.10"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
enable-cache: true
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install the project
run: uv sync --all-extras --dev
- name: Test
env:
CARTESIA_API_KEY: ${{ secrets.TESTING_CARTESIA_API_KEY }}
CARTESIA_TEST_DEPRECATED: "true"
run: |
make test