From 201d246c0780e32bd551efb9fd37336a5fc0beda Mon Sep 17 00:00:00 2001 From: anti Date: Mon, 20 Apr 2026 16:46:30 -0400 Subject: [PATCH] fix(ci): fix indentation on ci.yaml --- .gitea/workflows/ci.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 5dd8d21..e62ade3 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -61,22 +61,22 @@ jobs: name: Test (Live) runs-on: ubuntu-latest needs: [test-standard] + services: + mysql: + image: mysql:8.0 + env: + MYSQL_ROOT_PASSWORD: root + MYSQL_DATABASE: decnet_test + ports: + - 3307:3306 + options: >- + --health-cmd="mysqladmin ping -h 127.0.0.1" + --health-interval=10s + --health-timeout=5s + --health-retries=5 strategy: matrix: python-version: ["3.11"] - services: - mysql: - image: mysql:8.0 - env: - MYSQL_ROOT_PASSWORD: root - MYSQL_DATABASE: decnet_test - ports: - - 3307:3306 - options: >- - --health-cmd="mysqladmin ping -h 127.0.0.1" - --health-interval=10s - --health-timeout=5s - --health-retries=5 steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5