Skip to content

allowing ability to pass params to algos #52

allowing ability to pass params to algos

allowing ability to pass params to algos #52

Workflow file for this run

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
env:
USING_COVERAGE: "3.10"
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
make install-dev
make install-test
- name: Run tox
run: |
make tox
- name: Run lint
run: |
make lint
make lint-notebooks