Signed-off-by: jadfoq <jadfoq@no-reply@disroot.org>
This commit is contained in:
jadfoq 2024-02-14 14:16:20 +00:00
parent 9dc4214da5
commit 88fea9f0f5
1 changed files with 0 additions and 24 deletions

View File

@ -1,24 +0,0 @@
name: Check code for Black style
on:
push:
branches: [ "*" ]
pull_request:
branches: [ master ]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install black
run: |
python -m pip install --upgrade pip
pip install black
- name: Check code with black
run: |
black --check --diff --no-color .