Skip to content

make FlashEntropySearch class accept extra parameters, which is for c… #103

make FlashEntropySearch class accept extra parameters, which is for c…

make FlashEntropySearch class accept extra parameters, which is for c… #103

Workflow file for this run

name: Python package
on: [push]
jobs:
build:
name: Test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
os: [windows-2019, ubuntu-20.04, macos-12]
steps:
- 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
run: |
python -m pip install --upgrade pip
pip install pytest
pip install -r requirements.txt
pip install -e .
- name: Test with pytest
run: |
pytest