Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: expand CI workflow #15

Merged
merged 13 commits into from
Jul 24, 2024
6 changes: 4 additions & 2 deletions .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ jobs:
- name: Install requirements
run: pip install -r requirements_dev.txt
- name: Lint with pylint
run: pylint tests/tasks/*
run: pylint tests/tasks/* middleware/*
- name: Lint with ruff
run: ruff check tests/tasks/*
run: ruff check tests/tasks/* middleware/*
athith-g marked this conversation as resolved.
Show resolved Hide resolved
- name: Type checking with mypy
run: mypy middleware
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -173,4 +173,6 @@ poetry.toml
# LSP config files
pyrightconfig.json

# End of https://www.toptal.com/developers/gitignore/api/python
# End of https://www.toptal.com/developers/gitignore/api/python

outputs/
4 changes: 3 additions & 1 deletion requirements_dev.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
requests
crypt4gh~=1.7
athith-g marked this conversation as resolved.
Show resolved Hide resolved
mypy
pytest
pylint
requests
ruff