Skip to content

added MLFlowBackend #373

added MLFlowBackend

added MLFlowBackend #373

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
version:
- '1.6'
- '1.9'
os:
- ubuntu-latest
- macOS-latest
- windows-latest
arch:
- x64
python-version: ['3.10']
steps:
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- name: Setup python and mlflow server
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
architecture: ${{ matrix.arch }}
- run: |
python -m pip install mlflow
python -m pip show mlflow
mlflow server --host localhost --port 5000 &
- uses: julia-actions/julia-buildpkg@latest
- uses: julia-actions/julia-runtest@latest
env:
MLFLOW_URI: "http://localhost:5000"