@@ -14,45 +14,45 @@ jobs:
14
14
runs-on : ubuntu-latest
15
15
steps :
16
16
- name : Checkout
17
- uses : actions/checkout@v3
17
+ uses : actions/checkout@v4
18
18
- name : Start compose
19
19
run : docker compose -f docker-compose-test.yaml up --build --exit-code-from quest
20
20
- name : Stop compose
21
21
if : always()
22
- run : docker compose -f docker-compose-test.yaml down
22
+ run : docker compose -f docker-compose-test.yaml down -v
23
23
24
24
docker-compose-distributed-test :
25
25
name : Quest Smoke and Load Tests for Distributed deployments
26
26
runs-on : ubuntu-latest
27
27
steps :
28
28
- name : Checkout
29
- uses : actions/checkout@v3
29
+ uses : actions/checkout@v4
30
30
- name : Start compose
31
31
run : docker compose -f docker-compose-distributed-test.yaml up --build --exit-code-from quest
32
32
- name : Stop compose
33
33
if : always()
34
- run : docker compose -f docker-compose-distributed-test.yaml down
34
+ run : docker compose -f docker-compose-distributed-test.yaml down -v
35
35
36
36
docker-compose-test-with-kafka :
37
37
name : Quest Smoke and Load Tests for Standalone deployments with Kafka
38
38
runs-on : ubuntu-latest
39
39
steps :
40
40
- name : Checkout
41
- uses : actions/checkout@v3
41
+ uses : actions/checkout@v4
42
42
- name : Start compose
43
43
run : docker compose -f docker-compose-test-with-kafka.yaml up --build --exit-code-from quest
44
44
- name : Stop compose
45
45
if : always()
46
- run : docker compose -f docker-compose-test-with-kafka.yaml down
46
+ run : docker compose -f docker-compose-test-with-kafka.yaml down -v
47
47
48
48
docker-compose-distributed-test-with-kafka :
49
49
name : Quest Smoke and Load Tests for Distributed deployments with Kafka
50
50
runs-on : ubuntu-latest
51
51
steps :
52
52
- name : Checkout
53
- uses : actions/checkout@v3
53
+ uses : actions/checkout@v4
54
54
- name : Start compose
55
55
run : docker compose -f docker-compose-distributed-test-with-kafka.yaml up --build --exit-code-from quest
56
56
- name : Stop compose
57
57
if : always()
58
- run : docker compose -f docker-compose-distributed-test-with-kafka.yaml down
58
+ run : docker compose -f docker-compose-distributed-test-with-kafka.yaml down -v
0 commit comments