Skip to content

Commit

Permalink
ci ignore development_notebook and use mysql
Browse files Browse the repository at this point in the history
  • Loading branch information
mrmurilo75 committed Mar 19, 2024
1 parent fd5ba26 commit aeadc4a
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit aeadc4a

Please sign in to comment.