Skip to content

Commit

Permalink
fix: add 3.8 tests
Browse files Browse the repository at this point in the history
  • Loading branch information
chamini2 committed Oct 30, 2024
1 parent a727705 commit e7f29dd
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/integration_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,16 @@ jobs:
fail-fast: false
matrix:
deps: ["pydantic==1.10.12", "pydantic==2.5.0"]
python: ["3.8", "3.13"]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0

- uses: actions/setup-python@v4
with:
python-version: "3.9"
cache: 'pip'
python-version: ${{ matrix.python }}
cache: pip

- name: Install dependencies
run: |
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/tests-fal-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,17 @@ on:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python: ["3.8", "3.13"]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-python@v4
with:
python-version: "3.12"
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
pip install --upgrade pip wheel
Expand All @@ -25,4 +29,4 @@ jobs:
env:
FAL_KEY: ${{ secrets.FAL_KEY_PROD }}
run: |
pytest projects/fal_client/tests
pytest projects/fal_client/tests

0 comments on commit e7f29dd

Please sign in to comment.