Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
Signed-off-by: Camila Macedo <camila.macedo@foundries.io>
  • Loading branch information
Camila Macedo committed Nov 4, 2023
1 parent bebd4a4 commit 4f41a98
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,16 @@ jobs:
python3 -m pip install --upgrade pip
pip3 install requests
- name: Docker Cleanup (Precautionary)
run: |
docker stop $(docker ps -aq) 2>/dev/null || true
docker rm $(docker ps -aq) 2>/dev/null || true
docker rmi $(docker images -q) --force 2>/dev/null || true
docker volume prune -f
docker network prune -f
docker system prune -af
continue-on-error: true

- name: Create Dummy Certificates
run: |
mkdir -p ./data/certs
Expand Down Expand Up @@ -88,3 +98,4 @@ jobs:
run: |
docker-compose ps
docker-compose down

0 comments on commit 4f41a98

Please sign in to comment.