removed solo black run

This commit is contained in:
JanLJL
2022-04-07 12:18:57 +02:00
parent 93c0753db3
commit 3c5c516a6d

View File

@@ -19,17 +19,12 @@ jobs:
- name: Install Python dependencies - name: Install Python dependencies
run: python -m pip install black flake8 run: python -m pip install black flake8
- name: Black solo
uses: psf/black@stable
with:
options: "--check --verbose --diff --color -l 99"
- name: Run linters - name: Run linters
uses: wearerequired/lint-action@v1 uses: wearerequired/lint-action@v1
with: with:
github_token: ${{ secrets.github_token }} github_token: ${{ secrets.github_token }}
# Enable linters # Enable linters
black: true black: true
black_args: "-l 99" black_args: "-l 99 --diff --color"
flake8: true flake8: true
flake8_args: "--max-line-length=99 --extend-ignore=E203,E501" flake8_args: "--max-line-length=99 --extend-ignore=E203,E501"