Skip to content

[bug] fixing the card import to avoid obscure import errors #99

[bug] fixing the card import to avoid obscure import errors

[bug] fixing the card import to avoid obscure import errors #99

Workflow file for this run

name: Test Flow
on: [pull_request, push, workflow_dispatch]
jobs:
test:
strategy:
fail-fast: false
matrix:
py: [3.8]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.py }}
- name: run tests
run: |
pip install -Uqq pip
pip install -Uqq metaflow ipykernel==6.4.1
pip install -Uqq .
python3 -m ipykernel install --user --name python3
chmod u+x tests/test.sh
make test