We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34107f9 commit 4453728Copy full SHA for 4453728
1 file changed
.github/workflows/test-integration-v2-kradalby.yml
@@ -22,6 +22,14 @@ jobs:
22
integration_test/
23
config-example.yaml
24
25
+ # We currently only run one job at the time, so make sure
26
+ # we just wipe all containers and all networks.
27
+ - name: Clean up Docker
28
+ if: steps.changed-files.outputs.any_changed == 'true'
29
+ run: |
30
+ docker kill $(docker ps -q)
31
+ docker network prune -f
32
+
33
- name: Run general integration tests
34
if: steps.changed-files.outputs.any_changed == 'true'
35
run: nix develop --command -- make test_integration_v2_general
0 commit comments