Skip to content

chore(deps): bump mlflow from 2.17.2 to 3.5.0 #26

chore(deps): bump mlflow from 2.17.2 to 3.5.0

chore(deps): bump mlflow from 2.17.2 to 3.5.0 #26

Workflow file for this run

name: Run Unit Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
run: python -m unittest discover
working-directory: ./tests