From 2632cb09b8e69fb16b47edf391c889248e8d332d Mon Sep 17 00:00:00 2001 From: Mike Gerber Date: Tue, 18 Jul 2023 20:28:55 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A7=20CircleCI:=20Run=20black?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .circleci/config.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index f023c83..dca436f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -18,6 +18,18 @@ jobs: - store_test_results: path: test-results + black: + parameters: + python-version: + type: string + docker: + - image: cimg/python:<< parameters.python-version >> + steps: + - checkout + - run: pip3 install --upgrade pip + - run: pip3 install black + - run: black . + workflows: all-tests: jobs: @@ -25,3 +37,6 @@ workflows: matrix: parameters: python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"] + black: + jobs: + - black