Skip to content

Commit

Permalink
cleaned up workflow jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
mahdi committed Nov 16, 2023
1 parent 0fb2648 commit 3504bbd
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/ct_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -30,3 +34,11 @@ jobs:
- name: Pytest tests
run: |
pytest
test:
runs-on: ubuntu-latest
needs: build
steps:
- name: Pytest tests
run: |
pytest

0 comments on commit 3504bbd

Please sign in to comment.