Skip to content

add dependency

add dependency #49

Workflow file for this run

name: ML Client (build & test)
on:
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install --user pipenv
pipenv install
- name: Run tests
run: |
pipenv install pytest
pipenv run pytest machine-learning-client/