Skip to content

🧪 test all versions #82

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 6 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ jobs:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
os: [ubuntu-latest]
deepl-version: ["1.19.1", "1.20.0", "1.21.0"]
haystack-ai-version: ["2.0.0", "2.4.0", "2.8.0", "2.10.0"]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -29,6 +31,10 @@ jobs:
cache: 'poetry'
- name: Install Dependencies
run: poetry install --only main,test
- name: Install deepl version
run: poetry add deepl==${{ matrix.deepl-version }}
- name: Install haystack-ai version
run: poetry add haystack-ai==${{ matrix.haystack-ai-version }}
- name: Test
run: make test-unit
- uses: codecov/codecov-action@v4
Expand Down
Loading