Skip to content

Commit

Permalink
github: add workflow for unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
aconchillo committed Mar 18, 2024
1 parent 2f4e31d commit d59c072
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: test

on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- "**"
paths-ignore:
- "docs/**"

concurrency:
group: build-test-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
test:
name: "Unit Tests"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-full.txt
- name: Test with pytest
run: |
pip install pytest
pytest
3 changes: 3 additions & 0 deletions requirements-full.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
anthropic==0.20.0
deepgram-sdk==3.2.1
openai==1.14.1

0 comments on commit d59c072

Please sign in to comment.