-
Notifications
You must be signed in to change notification settings - Fork 3
35 lines (32 loc) · 799 Bytes
/
Copy pathci.yml
File metadata and controls
35 lines (32 loc) · 799 Bytes
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
name: ci
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- run: python -m pip install -e '.[dev]'
- run: ruff check
- run: ruff format --check
- run: mypy
- run: pytest -q
install-script:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- run: sh install.sh
- run: test -f agent-voice.env && .venv/bin/agent-voice --help