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 b7778c8 commit 5674d47Copy full SHA for 5674d47
.github/workflows/python-app.yml
@@ -22,12 +22,20 @@ jobs:
22
- name: Set up Python 3.10
23
uses: actions/setup-python@v3
24
with:
25
- python-version: "3.10"
+ python-version: "3.12"
26
- name: Install dependencies
27
run: |
28
python -m pip install --upgrade pip
29
- pip install flake8 pytest
+ pip install flake8 pytest mypy
30
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
31
+
32
+ - name: flake
33
+ run: flake8 testbench_generator.py
34
35
+ - name: mypy
36
+ run: mypy testbench_generator.py
37
38
39
- name: Test with unittest
40
41
python3 -m unittest tests/test_testbench_generator.py
0 commit comments