Skip to content

Commit

Permalink
🔧 Run lint during CI/CD
Browse files Browse the repository at this point in the history
Run pylint and mypy during the build process, and clean up stray files.
  • Loading branch information
hyperb1iss committed Sep 13, 2024
1 parent f8bce09 commit 617f0f0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 73 deletions.
4 changes: 0 additions & 4 deletions .github/gh/FUNDING.yml

This file was deleted.

69 changes: 0 additions & 69 deletions .github/gh/workflows/ci-cd.yml

This file was deleted.

4 changes: 4 additions & 0 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ jobs:
run: |
pip install poetry
poetry install
- name: Run mypy (type check)
run: poetry run mypy aeonsync tests
- name: Run pylint (linting)
run: poetry run pylint aeonsync tests
- name: Run tests
run: poetry run pytest
- name: Upload test results
Expand Down

0 comments on commit 617f0f0

Please sign in to comment.