From ab674e5e9e34750936f335e0cafe9263714e7394 Mon Sep 17 00:00:00 2001 From: Faisal Fawad Date: Sun, 21 Jul 2024 18:24:21 -0400 Subject: [PATCH] POC --- .github/workflows/pipeline.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index 0717501..69b3515 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -44,7 +44,9 @@ jobs: key: venv-${{ runner.os }}-${{ hashFiles('pyproject.toml') }} path: .venv - name: Run tests - run: make test + run: | + poetry config --list + make test lint: name: Lint needs: [build] @@ -61,4 +63,6 @@ jobs: key: venv-${{ runner.os }}-${{ hashFiles('pyproject.toml') }} path: .venv - name: Run linter - run: make lint + run: | + poetry config --list + make lint