21
21
uses : ./.github/workflows/reusable.yml
22
22
with :
23
23
redis_stack_type : cluster
24
- dotnet_version : 6.0.x
25
24
clr_version : net6.0
26
25
dotenv_file : .github/cluster.env
27
26
secrets : inherit
36
35
redis-stack-type : ['edge', '6.2.6', '7.2.0-RC3']
37
36
with :
38
37
redis_stack_type : ${{matrix.redis-stack-type}}
39
- dotnet_version : 6.0.x
40
38
clr_version : net6.0
41
39
dotenv_file : .github/standalone.env
42
40
secrets : inherit
46
44
uses : ./.github/workflows/reusable.yml
47
45
with :
48
46
redis_stack_type : cluster
49
- dotnet_version : 7.0.x
50
47
clr_version : net7.0
51
48
dotenv_file : .github/cluster.env
52
49
secrets : inherit
@@ -61,11 +58,33 @@ jobs:
61
58
redis-stack-type : ['edge', '6.2.6', '7.2.0-RC3']
62
59
with :
63
60
redis_stack_type : ${{matrix.redis-stack-type}}
64
- dotnet_version : 7.0.x
65
61
clr_version : net7.0
66
62
dotenv_file : .github/standalone.env
67
63
secrets : inherit
68
64
65
+ dotnet_8_cluster :
66
+ name : .NET 8 on [redis-stack cluster]
67
+ uses : ./.github/workflows/reusable.yml
68
+ with :
69
+ redis_stack_type : cluster
70
+ clr_version : net8.0
71
+ dotenv_file : .github/cluster.env
72
+ secrets : inherit
73
+
74
+ dotnet_8 :
75
+ name : .NET 8 on [redis-stack ${{matrix.redis-stack-type}}]
76
+ uses : ./.github/workflows/reusable.yml
77
+ strategy :
78
+ fail-fast : false
79
+ max-parallel : 5
80
+ matrix :
81
+ redis-stack-type : ['edge', '6.2.6', '7.2.0-RC3']
82
+ with :
83
+ redis_stack_type : ${{matrix.redis-stack-type}}
84
+ clr_version : net8.0
85
+ dotenv_file : .github/standalone.env
86
+ secrets : inherit
87
+
69
88
build_and_test_windows :
70
89
name : Windows Test ${{matrix.redis-stack-version}}
71
90
runs-on : windows-latest
0 commit comments