Skip to content

Commit

Permalink
enable tests in github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
jvllmr committed Oct 29, 2024
1 parent 04e5c1b commit 13a7d6f
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,20 @@ on:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9, "3.10", "3.11", "3.12", "3.13"]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: '3.x'
python-version: ${{ matrix.python-version }}
- name: Start Redis
uses: supercharge/redis-github-action@1.8.0
with:
redis-version: 7
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand All @@ -22,7 +29,6 @@ jobs:
pip install -r requirements-dev.txt
- name: Run tests
if: false
run: pytest

build:
Expand Down

0 comments on commit 13a7d6f

Please sign in to comment.