Skip to content
Merged
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
16 changes: 11 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,16 @@ on:

jobs:
test:
name: Test Suite (Python ${{ matrix.python-version }})
runs-on: ubuntu-latest
permissions:
contents: read

strategy:
fail-fast: false
matrix:
python-version: ["3.12", "3.13"]

services:
postgres:
image: postgres:16
Expand Down Expand Up @@ -55,12 +61,12 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v7
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: "3.12"
python-version: ${{ matrix.python-version }}
cache: 'pip'

- name: Install Poetry
Expand All @@ -87,4 +93,4 @@ jobs:
- name: Run tests
working-directory: ./quantara
run: |
poetry run pytest web_app/tests -v --tb=short
poetry run pytest web_app/tests -v --tb=short
Loading
Loading