Skip to content

Bump opencv-python from 4.2.0.34 to 4.8.1.78 #43

Bump opencv-python from 4.2.0.34 to 4.8.1.78

Bump opencv-python from 4.2.0.34 to 4.8.1.78 #43

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-16.04
steps:
- uses: actions/checkout@v2
- name: Setup Python.3.6.x
uses: actions/setup-python@v1
with:
python-version: 3.6.x
- name: Cache pip
uses: actions/cache@v1
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
${{ runner.os }}-
- name: Install packages
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest
- name: Unit tests
run: |
./scripts/test