Skip to content

Workflow file for this run

name: Build and test for continuous integration
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.8', '3.12']
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel pytest DeepDiff
pip install -r requirements.txt
- name: Build yatter
run: |
cd src
pip install .
- name: Test with pytest
run: |
pytest