Skip to content

Merge pull request #26 from DeepLabCut/v0.0.5 #21

Merge pull request #26 from DeepLabCut/v0.0.5

Merge pull request #26 from DeepLabCut/v0.0.5 #21

Workflow file for this run

name: Test suite
on:
push:
branches: [ main ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, macos-11, windows-latest]
python-version: [3.9]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
shell: bash
run: |
python -m pip install --upgrade pip
pip install pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Install DLClibrary
run: pip install .
- name: Run pytest tests
run: |
pytest