Skip to content

Commit 697a016

Browse files
authored
Add Docker cleanup before running integration tests (#1219)
1 parent 8112e5d commit 697a016

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/rust.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,10 @@ jobs:
124124
- name: Install dependencies
125125
run: poetry install --no-root
126126

127+
- name: Remove Docker containers
128+
continue-on-error: true
129+
run: docker rm -f $(docker ps -a -q)
130+
127131
- name: Log in to GitHub Docker repository
128132
run: echo ${{ secrets.GITHUB_TOKEN }} | docker login docker.pkg.github.com -u ${{github.actor}} --password-stdin
129133

0 commit comments

Comments
 (0)