~cytrogen/evi-run

6b317f5a0b2a543bc9825f2ab1c23911c6935500 — Bendy 6 months ago b3270b9
Disable code formatting checks for the first release
1 files changed, 8 insertions(+), 7 deletions(-)

M .github/workflows/python-ci.yml
M .github/workflows/python-ci.yml => .github/workflows/python-ci.yml +8 -7
@@ 35,13 35,14 @@ jobs:
        pip install flake8 black isort
        if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
    
    - name: Code formatting check with Black
      run: |
        black --check --diff .
    
    - name: Import sorting check with isort
      run: |
        isort --check-only --diff .
    # Отключено форматирование кода для первого релиза
    # - name: Code formatting check with Black
    #   run: |
    #     black --check --diff .
    # 
    # - name: Import sorting check with isort
    #   run: |
    #     isort --check-only --diff .
    
    - name: Lint with flake8
      run: |