Skip to content

Bug fixes to tab complete and additions to shell addins #5

Bug fixes to tab complete and additions to shell addins

Bug fixes to tab complete and additions to shell addins #5

Workflow file for this run

name: Code Quality Checks
on:
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.8'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[test]
- name: Run Black
run: black --check .
- name: Run Isort
run: isort --check-only .
# - name: Run Flake8
# run: flake8 .
# - name: Run MyPy
# run: mypy .