Skip to content

Commit

Permalink
add redis to test
Browse files Browse the repository at this point in the history
  • Loading branch information
none committed Jan 5, 2025
1 parent 065b9f8 commit 5919dca
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
paths:
- '**.py'
- '**.yml'
- 'requirements-dev.lock'
branches:
- main
Expand All @@ -17,11 +18,16 @@ jobs:
test:
name: test py${{ matrix.python-version }} with pg${{ matrix.postgres-version }}
runs-on: ubuntu-latest
services:
redis:
image: redis
ports:
- 6379:6379
timeout-minutes: 8
strategy:
matrix:
python-version: ["3.11", "3.12"]
postgres-version: [15, 16]
python-version: ["3.12"]
postgres-version: [12, 16]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand Down

0 comments on commit 5919dca

Please sign in to comment.