Skip to content

build(deps-dev): bump types-setuptools from 75.1.0.20240917 to 75.5.0.20241122 #640

build(deps-dev): bump types-setuptools from 75.1.0.20240917 to 75.5.0.20241122

build(deps-dev): bump types-setuptools from 75.1.0.20240917 to 75.5.0.20241122 #640

Workflow file for this run

name: Run tests
on:
push:
branches: [ main ]
paths:
- '**.py'
- .github/workflows/tests.yml
- requirements-test.txt
pull_request:
branches: [ main ]
jobs:
download_redis:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Cache Download and build Redis
uses: actions/cache@v4
with:
path: ~/redis
key: redis-${{ hashFiles('.download-redis.sh') }}
- name: Download and build Redis
run: ./.download-redis.sh
tests_7_4:
needs: [download_redis]
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", pypy-3.10]
env:
OS: ubuntu-latest
PYTHON: ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/pytest
with:
python-version: ${{ matrix.python-version }}
redis: "7.4"
codecov_token: ${{ secrets.CODECOV_TOKEN }}
tests_7_2:
needs: [tests_7_4]
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", pypy-3.10]
env:
OS: ubuntu-latest
PYTHON: ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/pytest
with:
python-version: ${{ matrix.python-version }}
redis: "7.2"
codecov_token: ${{ secrets.CODECOV_TOKEN }}
tests_6_2:
needs: [download_redis]
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", pypy-3.10]
env:
OS: ubuntu-latest
PYTHON: ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/pytest
with:
python-version: ${{ matrix.python-version }}
redis: "6.2"
codecov_token: ${{ secrets.CODECOV_TOKEN }}