Compare commits

..

10 Commits

Author SHA1 Message Date
46fb233dcb [P] Remove use-case diagram
All checks were successful
Component testing / Hub testing (push) Successful in 22s
Component testing / Store testing (push) Successful in 50s
Component testing / Integration smoke testing (push) Successful in 2m21s
2026-03-29 14:16:22 +03:00
058a21c271 [P] Add architecture diagram 2026-03-29 14:16:22 +03:00
dc09d79696 [P] Update diagram to reflect projet usecase 2026-03-29 14:16:22 +03:00
e17ecb7842 [P] Add primary use-case activity diagram 2026-03-29 14:16:22 +03:00
a19c1af2a7 [P] Simplify general sequence diagram 2026-03-29 14:16:22 +03:00
b47b932ae3 [P] Move diagrams into a dedicated directory 2026-03-29 14:16:22 +03:00
46955a2175 [P] Convert use case diagram files to PlantUML format 2026-03-29 14:16:22 +03:00
a91692eb62 [P] Convert sequence diagram files to PlantUML format 2026-03-29 14:16:22 +03:00
95e1085d64 Add use-case and sequence diagrams 2026-03-29 14:16:22 +03:00
c820b6f990 [P] Always execute all steps while cleaning up
All checks were successful
Component testing / Hub testing (push) Successful in 17s
Component testing / Store testing (push) Successful in 41s
Component testing / Integration smoke testing (push) Successful in 2m22s
2026-03-29 13:59:08 +03:00

View File

@@ -7,10 +7,13 @@ jobs:
name: Reset docker state name: Reset docker state
steps: steps:
- name: Stop all containers - name: Stop all containers
if: ${{always()}}
run: docker stop $(docker ps -a | cut -d " " -f 1 | tail -n +2) run: docker stop $(docker ps -a | cut -d " " -f 1 | tail -n +2)
- name: Remove all containers - name: Remove all containers
if: ${{always()}}
run: docker rm $(docker ps -a | cut -d " " -f 1 | tail -n +2) run: docker rm $(docker ps -a | cut -d " " -f 1 | tail -n +2)
- name: Remove extra volumes - name: Remove extra volumes
if: ${{always()}}
run: docker volume rm road_vision_postgres_data road_vision_pgadmin-data run: docker volume rm road_vision_postgres_data road_vision_pgadmin-data