Skip to content

Added capability to find dr_sep #56

Added capability to find dr_sep

Added capability to find dr_sep #56

Workflow file for this run

name: Formatting
on:
pull_request:
branches:
- main
jobs:
formatting:
name: Formatting
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Run black
run: black --check .
- name: Run isort
run: isort --check-only .