From 20881bf05621958536f4d33dffe2f4f731515e52 Mon Sep 17 00:00:00 2001 From: Ahmed Mahfouz Date: Thu, 26 Oct 2023 13:47:32 +0200 Subject: [PATCH] refactor<>: add pip to install black and check the format --- .github/workflows/python-CI.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/python-CI.yml b/.github/workflows/python-CI.yml index 9f8f0d0d..fcd0598c 100644 --- a/.github/workflows/python-CI.yml +++ b/.github/workflows/python-CI.yml @@ -19,6 +19,10 @@ jobs: uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install black - name: Check code formatting with Black run: | black --check .