Skip to content

Bump mlflow from 2.4.1 to 2.9.2 in /services/python #88

Bump mlflow from 2.4.1 to 2.9.2 in /services/python

Bump mlflow from 2.4.1 to 2.9.2 in /services/python #88

Workflow file for this run

name: Validate Pipeline
on: [push, pull_request]
jobs:
build-linux:
runs-on: ubuntu-latest
strategy:
max-parallel: 16
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: '3.10'
- name: Add conda to system path
run: |
# $CONDA is an environment variable pointing to the root of the miniconda directory
echo $CONDA/bin >> $GITHUB_PATH
- name: Install dependencies
run: |
pip install --no-cache-dir -r services/python/requirements.txt
- name: Lint with flake8
run: |
flake8 growth_modelling --count --select=E9,F63,F7,F82 --show-source --statistics