Skip to content

Commit

Permalink
[FEATURE] Adds type checking to github CI - AIL-44
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigo-pessoa-lrn committed Nov 4, 2024
1 parent b38f9d5 commit 6d8f873
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,23 @@ on:
pull_request:

jobs:
type_check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'

- name: Install Mypy Dependencies
run: pip install mypy

- name: Type Checking with Mypy
run: mypy --strict learnosity_sdk

tests:
runs-on: ubuntu-latest
strategy:
Expand Down

0 comments on commit 6d8f873

Please sign in to comment.