Skip to content

build(deps-dev): bump types-setuptools from 74.1.0.20240907 to 75.1.0.20240917 #618

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

build(deps-dev): bump types-setuptools from 74.1.0.20240907 to 75.1.0.20240917 #618

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_2:
needs: [download_redis]
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
python-version: [3.8, 3.9, "3.10", "3.11", "3.12", pypy-3.9]
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_7_0:
needs: [download_redis]
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
python-version: [3.8, 3.9, "3.10", "3.11", "3.12", pypy-3.9]
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.0"
codecov_token: ${{ secrets.CODECOV_TOKEN }}
tests_6_2:
needs: [tests_7_0]
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
python-version: [3.8, 3.9, "3.10", "3.11", "3.12", pypy-3.9]
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 }}
tests_6_0:
needs: [tests_6_2]
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
python-version: [3.9, "3.10", "3.11", "3.12", pypy-3.9]
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.0"
codecov_token: ${{ secrets.CODECOV_TOKEN }}