Skip to content

Commit

Permalink
add mypy and pylint to the CI
Browse files Browse the repository at this point in the history
  • Loading branch information
SimeonEhrig committed Feb 8, 2024
1 parent 4661bd3 commit 18b09b8
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/testDeploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,27 @@ jobs:
src: "./"
version: "~= 24.0"

mypy-pylint-linter:
name: run mypy and pylint linter
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.12"
architecture: x64
- name: Install bashi
run: |
pip install .
- uses: weibullguy/[email protected]
with:
python-root-list: "."
python-version: "3.12"
architecture: "x64"
use-mypy: true
use-pylint: true

unit-tests:
runs-on: ubuntu-latest
needs: formatter
Expand Down

0 comments on commit 18b09b8

Please sign in to comment.