-
Notifications
You must be signed in to change notification settings - Fork 16
75 lines (73 loc) · 1.94 KB
/
tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
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 }}