Add handling for ZeroDivisionError #108
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Code Quality Check | |
on: | |
- push | |
- pull_request | |
jobs: | |
lint-ci: | |
runs-on: ubuntu-latest | |
name: Run pre-commit and install test | |
steps: | |
- name: Check out source repository | |
uses: actions/checkout@v2 | |
- name: Set up Python environment | |
uses: actions/setup-python@v1 | |
with: | |
python-version: "3.8" | |
- name: Run pre-commit | |
uses: pre-commit/[email protected] | |
- name: Install benchmark-comparison | |
run: | | |
python setup.py develop |