Skip to content

Commit

Permalink
add python matrix for back tests
Browse files Browse the repository at this point in the history
  • Loading branch information
praeitor committed Dec 23, 2024
1 parent 85fc1aa commit 4d713b6
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
jobs:
backend-tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, 3.10]
services:
postgres:
image: postgres
Expand All @@ -17,11 +20,12 @@ jobs:
- 5432:5432
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- uses: actions/checkout@v4
- name: Set up Python
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: 3.9
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
Expand Down

0 comments on commit 4d713b6

Please sign in to comment.