Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
MatsMoll committed Feb 1, 2025
1 parent bb12d9c commit a09e2ef
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,13 @@ jobs:
python-version: "3.10"

- name: Start MLflow service
run: docker run -d --rm \
--network mlflow \
--name mlflow \
ghcr.io/mlflow/mlflow:v2.15.0 \
/bin/sh -c "mlflow server --backend-store-uri file:///app/mlflow-server/experiments --artifacts-destination file:///app/mlflow-server/artifacts --host 0.0.0.0 --port 8000"
run: |
docker network create mlflow || true
docker run -d --rm \
--network mlflow \
--name mlflow \
ghcr.io/mlflow/mlflow:v2.15.0 \
/bin/sh -c "mlflow server --backend-store-uri file:///app/mlflow-server/experiments --artifacts-destination file:///app/mlflow-server/artifacts --host 0.0.0.0 --port 8000"
- uses: actions/cache@v3
id: cache-venv
Expand Down

0 comments on commit a09e2ef

Please sign in to comment.