Skip to content

Feature/named entity recognition #99

Feature/named entity recognition

Feature/named entity recognition #99

Workflow file for this run

name: CodeCov
on:
pull_request:
branches: '**'
push:
branches: 'main'
jobs:
run:
runs-on: ubuntu-latest
env:
OS: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.9
cache: 'pip' # caching pip dependencies
- name: Generate Report
run: |
pip install --upgrade pip
pip install -r requirements.txt
pip install coverage
pip install coverage[toml]
coverage run -m pytest
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true