Skip to content

Commit

Permalink
Refactor port mappings in integration-test-fast.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
safoinme committed Oct 14, 2024
1 parent a712dcf commit 449fe79
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/integration-test-fast.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ jobs:
env:
MYSQL_ROOT_PASSWORD: zenml
MYSQL_DATABASE: zenml
ports: [3306:3306]
ports:
- 3306:3306
options: >-
--health-cmd="mysqladmin ping"
--health-interval=10s
Expand All @@ -92,9 +93,10 @@ jobs:
ZENML_SERVER_DEPLOYMENT_TYPE: docker
ZENML_SERVER_AUTO_ACTIVATE: 'True'
ZENML_SERVER_AUTO_CREATE_DEFAULT_USER: 'True'
ports: [8080:8080]
ports:
- 8080:8080
name: integration-tests-fast
runs-on: ${{ inputs.os }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
Expand Down

0 comments on commit 449fe79

Please sign in to comment.