Skip to content

feat: add input validation for non-private methods of approximation.py #248

feat: add input validation for non-private methods of approximation.py

feat: add input validation for non-private methods of approximation.py #248

Workflow file for this run

name: Unit Tests
on:
push:
branches: ["main"]
pull_request:
branches: ["**"]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
max-parallel: 10
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.9", "3.10", "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
python -m pip install pytest
if [ -f requirements-dev.txt ]; then pip install --no-dependencies -r requirements-dev.txt; fi
- name: Test with pytest
run: |
pytest --ignore=tests/integration