Skip to content

Commit

Permalink
Add Docker cleanup step before a test in Actions workflow (#475)
Browse files Browse the repository at this point in the history
  • Loading branch information
kmazurek authored Apr 9, 2021
1 parent 1db3b7f commit cd0acec
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ jobs:
- name: Install dependencies
run: poetry install --no-root

- name: Remove Docker containers
continue-on-error: true
run: docker rm -f $(docker ps -a -q)

- name: Log in to GitHub Docker repository
run: echo ${{ secrets.GITHUB_TOKEN }} | docker login docker.pkg.github.com -u ${{github.actor}} --password-stdin

Expand Down

0 comments on commit cd0acec

Please sign in to comment.