ha - fix field updates, ratios #79
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: Pre-commit Check | |
# This workflow is triggered on push and pull request events | |
on: [push, pull_request] | |
jobs: | |
run-pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.9' | |
- name: Install and Run pre-commit | |
run: | | |
pip3 install -U pre-commit mypy pytest | |
pre-commit run --all-files |