Skip to content

add ci

add ci #18

Workflow file for this run

name: Test Flow
on: [pull_request, push, workflow_dispatch]
jobs:
test:
strategy:
fail-fast: false
matrix:
py: [3.6, 3.7, 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: Install libraries
run: |
pip install -Uqq metaflow
pip install -Uqe .
- name: run tests
run: |
cd tests
chmod u+x test.sh
./test.sh