From 3504bbd7673a9926bf7e229e6c962b5ed9c82eea Mon Sep 17 00:00:00 2001 From: mahdi Date: Thu, 16 Nov 2023 17:42:03 -0500 Subject: [PATCH] cleaned up workflow jobs --- .github/workflows/ct_ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/ct_ci.yml b/.github/workflows/ct_ci.yml index ea7d209..bafffff 100644 --- a/.github/workflows/ct_ci.yml +++ b/.github/workflows/ct_ci.yml @@ -19,6 +19,10 @@ jobs: python -m pip install --upgrade pip setuptools wheel pip install -r requirements.txt + analyze: + runs-on: ubuntu-latest + needs: build + steps: - name: Lint run: | python --version @@ -30,3 +34,11 @@ jobs: - name: Pytest tests run: | pytest + + test: + runs-on: ubuntu-latest + needs: build + steps: + - name: Pytest tests + run: | + pytest