From a69dc9ee42bce587409011198f3973bc6b5c8396 Mon Sep 17 00:00:00 2001 From: Simon Date: Thu, 14 Sep 2023 14:03:03 +0200 Subject: [PATCH] Run docker system prune after tests (#4272) Co-authored-by: Simon Dumas --- .github/workflows/ci-integration-tests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-integration-tests.yml b/.github/workflows/ci-integration-tests.yml index b0e0c89125..74de8c7157 100644 --- a/.github/workflows/ci-integration-tests.yml +++ b/.github/workflows/ci-integration-tests.yml @@ -35,4 +35,6 @@ jobs: run: sbt -Dsbt.color=always -Dsbt.supershell=false "project tests" test - name: Stop & clean Docker if: ${{ always() }} - run: docker-compose -f tests/docker/docker-compose.yml down --rmi "local" --volumes \ No newline at end of file + run: | + docker-compose -f tests/docker/docker-compose.yml down --rmi "local" --volumes + docker system prune --force --volumes \ No newline at end of file