Skip to content

Update requirements

Update requirements #3

Workflow file for this run

name: tests
on: [pull_request, push, workflow_dispatch]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.8
- run: pip install -r requirements-dev.txt
- run: coverage run -m pytest
- run: coverage xml --omit "templates/ingest/*","pipelines/ingest_testing/*"
- uses: codecov/codecov-action@v2