We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b38f9d5 commit a3938d1Copy full SHA for a3938d1
.github/workflows/ci.yml
@@ -6,6 +6,23 @@ on:
6
pull_request:
7
8
jobs:
9
+ type_check:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Checkout code
13
+ uses: actions/checkout@v4
14
+
15
+ - name: Set up Python
16
+ uses: actions/setup-python@v4
17
+ with:
18
+ python-version: '3.9'
19
20
+ - name: Install Mypy Dependencies
21
+ run: pip install mypy
22
23
+ - name: Type Checking with Mypy
24
+ run: mypy --strict --install-types --non-interactive learnosity_sdk
25
26
tests:
27
runs-on: ubuntu-latest
28
strategy:
0 commit comments