From 980068239223c136c60860a0e5c6ffd628bb0626 Mon Sep 17 00:00:00 2001 From: carefree0910 Date: Wed, 18 Sep 2024 14:59:35 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7Enhanced=20`check`=20CI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/CI.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index b7466e1..2ac95ca 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -33,8 +33,10 @@ jobs: run: pip install -r requirements.txt - name: Install check dependencies run: pip install black mypy pandas-stubs - - name: Run checks - run: black . --check && mypy cfpyo3 + - name: black + run: black . --check --diff + - name: mypy + run: mypy cfpyo3 test: runs-on: ubuntu-latest