remove black from github actions due to false positives

This commit is contained in:
Franzi 2021-11-21 08:20:00 +01:00
parent 8e1219e29c
commit 4b68337551
Signed by: kunsi
GPG Key ID: 12E3D2136B818350
1 changed files with 0 additions and 24 deletions

View File

@ -61,30 +61,6 @@ jobs:
- name: Run flake8
run: flake8 .
working-directory: .
black:
name: black
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: install gettext
run: sudo apt install gettext
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- uses: actions/cache@v1
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/setup.py') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install pretalx
run: pip3 install pretalx
- name: Install Dependencies
run: pip3 install black -Ue .
- name: Run black
run: black --check .
working-directory: .
docformatter:
name: docformatter
runs-on: ubuntu-latest