Skip to content

feat: add docarray install instructions in dockerfile #90

feat: add docarray install instructions in dockerfile

feat: add docarray install instructions in dockerfile #90

Workflow file for this run

name: CI
on:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install requirements
run: make init
- name: Run tests
run: pytest --cov=normalizer --cov=generator --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
files: ./coverage.xml