Skip to content

Commit

Permalink
BP-008 Added the steps to spin up and down the docker compose files
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielMachadoVasconcelos committed Sep 29, 2024
1 parent 86e2d20 commit bb8e482
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
runs-on: ubuntu-latest

steps:

# Checkout the repository
- name: Checkout Repository
uses: actions/checkout@v3
Expand All @@ -32,6 +33,9 @@ jobs:
check-latest: true
cache: gradle

- name: Spin up docker compose resources
run: docker-compose up -d

- name: Build with Gradle
uses: gradle/gradle-build-action@937999e9cc2425eddc7fd62d1053baf041147db7
with:
Expand All @@ -44,4 +48,7 @@ jobs:
files: |
test-results/**/*.xml
test-results/**/*.trx
test-results/**/*.json
test-results/**/*.json
- name: Clean up docker compose resources
run: docker-compose down

0 comments on commit bb8e482

Please sign in to comment.