Skip to content

feat: allow for python hook names to be implied by class name #232

feat: allow for python hook names to be implied by class name

feat: allow for python hook names to be implied by class name #232

Workflow file for this run

name: coverage
on:
push:
branches:
- main
tags:
- "*"
pull_request:
branches:
- "*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: "3.8"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox virtualenv
- name: Test build with coverage
run: "tox -e cov-report"
- name: Send coverage report to codecov
uses: codecov/codecov-action@v1
with:
file: ./coverage.xml