Skip to content

Added CLI utility and re-organized the project modules #169

Added CLI utility and re-organized the project modules

Added CLI utility and re-organized the project modules #169

Workflow file for this run

name: Python CI
on:
pull_request:
branches:
- dev
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pre-commit
- name: Run pre-commit hooks
run: pre-commit run --all-files