8000 doc/md: minor fixes to atlasci yamls by rotemtam · Pull Request #2867 · ent/ent · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

doc/md: minor fixes to atlasci yamls #2867

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 19, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions doc/md/ci.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ jobs:
MYSQL_ROOT_PASSWORD: pass
MYSQL_DATABASE: test
ports:
- 3307:3306
- 3306:3306
options: >-
--health-cmd "mysqladmin ping -ppass"
--health-interval 10s
Expand All @@ -159,9 +159,9 @@ jobs:
fetch-depth: 0 # Mandatory unless "latest" is set below.
- uses: ariga/atlas-action@v0
with:
dir: path/to/migrations
dir: ent/migrate/migrations
dir-format: golang-migrate # Or: atlas, goose, dbmate
dev-url: mysql://root:pass@localhost:3307/test
dev-url: mysql://root:pass@localhost:3306/test
```

</TabItem>
Expand Down Expand Up @@ -189,7 +189,7 @@ jobs:
MYSQL_DATABASE: test
MYSQL_ROOT_PASSWORD: pass
ports:
- 4306:3306
- 3306:3306
options: >-
--health-cmd "mysqladmin ping -ppass"
--health-interval 10s
Expand All @@ -203,9 +203,9 @@ jobs:
fetch-depth: 0 # Mandatory unless "latest" is set below.
- uses: ariga/atlas-action@v0
with:
dir: path/to/migrations
dir: ent/migrate/migrations
dir-format: golang-migrate # Or: atlas, goose, dbmate
dev-url: maria://root:pass@localhost:4306/test
dev-url: maria://root:pass@localhost:3306/test
```

</TabItem>
Expand Down Expand Up @@ -233,7 +233,7 @@ jobs:
POSTGRES_DB: test
POSTGRES_PASSWORD: pass
ports:
- 5430:5432
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
Expand All @@ -246,9 +246,9 @@ jobs:
fetch-depth: 0 # Mandatory unless "latest" is set below.
- uses: ariga/atlas-action@v0
with:
dir: path/to/migrations
dir: ent/migrate/migrations
dir-format: golang-migrate # Or: atlas, goose, dbmate
dev-url: postgres://postgres:pass@localhost:5430/test?sslmode=disable
dev-url: postgres://postgres:pass@localhost:5432/test?sslmode=disable
```

</TabItem>
Expand Down
0