Taylor Fox Dahlin
[Feature] Video metadata (#809)
e0d67e2 unverified
raw
history blame
743 Bytes
name: CI testing
on:
pull_request:
branches: [ master ]
paths-ignore:
- '**/README.md'
- 'docs/**'
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
python: [3.6, 3.7, 3.8, 3.9]
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Upgrade pip
run: pip install --upgrade pipenv
- name: Run make ci
run: make ci
# https://github.com/codecov/codecov-action
- name: Codecov
uses: codecov/codecov-action@v1
with:
file: .coverage
fail_ci_if_error: true