Compare commits

..

10 Commits

Author SHA1 Message Date
hasslesstech 46fb233dcb [P] Remove use-case diagram
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
hasslesstech 058a21c271 [P] Add architecture diagram 2026-03-29 14:16:22 +03:00
hasslesstech dc09d79696 [P] Update diagram to reflect projet usecase 2026-03-29 14:16:22 +03:00
hasslesstech e17ecb7842 [P] Add primary use-case activity diagram 2026-03-29 14:16:22 +03:00
hasslesstech a19c1af2a7 [P] Simplify general sequence diagram 2026-03-29 14:16:22 +03:00
hasslesstech b47b932ae3 [P] Move diagrams into a dedicated directory 2026-03-29 14:16:22 +03:00
hasslesstech 46955a2175 [P] Convert use case diagram files to PlantUML format 2026-03-29 14:16:22 +03:00
hasslesstech a91692eb62 [P] Convert sequence diagram files to PlantUML format 2026-03-29 14:16:22 +03:00
bacant150 95e1085d64 Add use-case and sequence diagrams 2026-03-29 14:16:22 +03:00
hasslesstech c820b6f990 [P] Always execute all steps while cleaning up
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
+3
View File
@@ -7,10 +7,13 @@ jobs:
name: Reset docker state
steps:
- name: Stop all containers
if: ${{always()}}
run: docker stop $(docker ps -a | cut -d " " -f 1 | tail -n +2)
- name: Remove all containers
if: ${{always()}}
run: docker rm $(docker ps -a | cut -d " " -f 1 | tail -n +2)
- name: Remove extra volumes
if: ${{always()}}
run: docker volume rm road_vision_postgres_data road_vision_pgadmin-data