Skip to content

Commit

Permalink
Edited ci for testing and static analysis to run after build
Browse files Browse the repository at this point in the history
  • Loading branch information
wleong1 committed Mar 7, 2024
1 parent aac1a61 commit 35cba4f
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,6 @@ jobs:
run: |
pip install -r requirements.txt
- name: Run tests
run: |
python tests.py # Replace with the command to run your tests
deploy:
runs-on: ubuntu-latest
steps:
Expand All @@ -48,6 +44,7 @@ jobs:
- run: mkdocs gh-deploy --force

mypy:
needs: build
runs-on: ubuntu-latest
name: Mypy
steps:
Expand All @@ -65,6 +62,7 @@ jobs:
mypy src/
pylint:
needs: build
runs-on: ubuntu-latest
name: pylint
steps:
Expand All @@ -81,6 +79,7 @@ jobs:
pylint src/
pytest:
needs: build
runs-on: ubuntu-latest
name: pytest
steps:
Expand Down

0 comments on commit 35cba4f

Please sign in to comment.