From 808b450627a608418fcdb4049b44e68537ed65d4 Mon Sep 17 00:00:00 2001 From: ThalesJ2 Date: Thu, 14 Aug 2025 16:53:16 -0300 Subject: [PATCH 1/2] fix: update workflows ci --- .github/workflows/ci.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9ba3a28..cab12b6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,6 +10,22 @@ jobs: build: runs-on: ubuntu-latest + services: + mysql: + image: mysql:8.0 + env: + MYSQL_ROOT_PASSWORD: root + MYSQL_DATABASE: appdb + MYSQL_USER: appuser + MYSQL_PASSWORD: secret + ports: + - 3306:3306 + options: >- + --health-cmd="mysqladmin ping -h localhost" + --health-interval=10s + --health-timeout=5s + --health-retries=5 + steps: - name: Checkout uses: actions/checkout@v3 From f30637f05399165cf8f7befa09e798fbb82210f8 Mon Sep 17 00:00:00 2001 From: ThalesJ2 Date: Thu, 14 Aug 2025 16:57:52 -0300 Subject: [PATCH 2/2] fix: update workflows ci --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cab12b6..07b0d63 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,4 +38,5 @@ jobs: cache: maven - name: Build with Maven - run: mvn clean install + run: mvn clean install -DskipTests +