Skip to content

Commit

Permalink
update github-actions.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
XD-cods committed Jun 26, 2024
1 parent 1c1f4bd commit 44d8709
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,13 @@ jobs:
- name: Build & Test
run: mvn -B clean package

- name: create & run docker image
run: docker-compose up -d --build
- name: Install Docker Compose
run: sudo apt-get update && sudo apt-get install -y docker-compose

- name: Create & run Docker image
run: docker-compose up -d --build

- name: Clean up Docker resources
run: |
docker-compose down
docker system prune -af

0 comments on commit 44d8709

Please sign in to comment.