Skip to content

Initialize BaseDriftDetector #5

Initialize BaseDriftDetector

Initialize BaseDriftDetector #5

Workflow file for this run

name: Unit Tests
on:
workflow_dispatch:
push:
branches:
- main
paths:
- '**/src/**'
pull_request:
branches:
- main
paths:
- '**/src/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.11.x
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run tests
run: pytest