Skip to content

Merge pull request #822 from yanjunqiAz/ci/modernize-workflows #1580

Merge pull request #822 from yanjunqiAz/ci/modernize-workflows

Merge pull request #822 from yanjunqiAz/ci/modernize-workflows #1580

name: Formatting with black & isort
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.9"
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
python setup.py install_egg_info
pip install "click<8.1.0"
pip install -e .[test]
- name: Check code format with black and isort
run: |
make lint