Skip to content

build(deps): bump opencv-contrib-python from 4.7.0.72 to 4.8.1.78 #37

build(deps): bump opencv-contrib-python from 4.7.0.72 to 4.8.1.78

build(deps): bump opencv-contrib-python from 4.7.0.72 to 4.8.1.78 #37

Workflow file for this run

name: CodeCov
on: [push, pull_request]
jobs:
run:
runs-on: ubuntu-latest
env:
OS: ubuntu-latest
PYTHON: '3.9'
steps:
- uses: actions/checkout@master
- name: Setup Python
uses: actions/setup-python@master
with:
python-version: 3.9
- name: Generate Report
run: |
pip install -r requirements.txt
pip install coverage
coverage run -m unittest
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
flags: unittests
verbose: true