Skip to content

Started to implement ARAD model, added method to SampleSet, added mis… #385

Started to implement ARAD model, added method to SampleSet, added mis…

Started to implement ARAD model, added method to SampleSet, added mis… #385

name: Run unit tests
on: [push]
jobs:
build:
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
cache-dependency-path: "**/pyproject.toml"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ".[dev]"
- name: Run unit tests
run: |
sh run_tests.sh