From aeadc4ae0acb124a74abbfbe01f4a77508740f8b Mon Sep 17 00:00:00 2001 From: Murilo Rosa Date: Tue, 19 Mar 2024 22:13:47 +0000 Subject: [PATCH] ci ignore development_notebook and use mysql --- .github/workflows/ci.yml | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 91873fc..284e69d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,16 +38,19 @@ jobs: runs-on: ubuntu-latest services: - postgres: - image: postgres:15 - ports: - - 5432:5432 + mysql: + image: mysql:latest env: - POSTGRES_PASSWORD: postgres + MYSQL_ROOT_PASSWORD: root + MYSQL_DATABASE: mydatabase + MYSQL_USER: myuser + MYSQL_PASSWORD: mypassword + ports: + - 3306:3306 env: - # postgres://user:password@host:port/database - DATABASE_URL: 'postgres://postgres:postgres@localhost:5432/postgres' + # mysql://user:password@host:port/database + DATABASE_URL: 'mysql://myuser:mypassword@localhost:3306/mydatabase' steps: - name: Checkout Code Repository