Skip to content

Add additional things to shell addins #7

Add additional things to shell addins

Add additional things to shell addins #7

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 .