From 06fef5361dafd7cc956a351476e70ed4dcfdcb63 Mon Sep 17 00:00:00 2001 From: Philipp Horstenkamp Date: Sun, 17 Sep 2023 13:47:20 +0200 Subject: [PATCH] Lightend black in the pipline building (#128) Pipline should now run now 20 -40s faster. --- .github/workflows/lint-actions.yaml | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/.github/workflows/lint-actions.yaml b/.github/workflows/lint-actions.yaml index 21cdbb3..7583d71 100644 --- a/.github/workflows/lint-actions.yaml +++ b/.github/workflows/lint-actions.yaml @@ -15,14 +15,8 @@ jobs: python-version: '3.11' - name: Check out Git repository uses: actions/checkout@v3 - - name: Install and configure Poetry - uses: snok/install-poetry@v1 - with: - version: 1.4.2 - virtualenvs-create: false - virtualenvs-path: ~/local/share/virtualenvs - - run: poetry install --without develop,doc,test - - name: Run linters + - run: pip install black + - name: Run black run: | black src tests @@ -43,7 +37,7 @@ jobs: virtualenvs-create: false virtualenvs-path: ~/local/share/virtualenvs - run: poetry install --without develop,doc - - name: Run linters + - name: Run mypy run: | mypy src tests