revert fuzz input #63
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: MyPy Type Checking | |
on: [pull_request] | |
jobs: | |
type-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 1 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.10.12" # Replace with the version you need | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
pip install mypy>=1.7.1 | |
- name: Type Check Frontend | |
run: mypy frontend/*.py frontend/parser frontend/java frontend/go frontend/javascript frontend/rust frontend/cpp | |
- name: Type Check Backend | |
run: mypy unitsyncer main.py | |
- name: Type Check Evaluation Code | |
run: mypy evaluation | |
# - name: Type Check Scripts | |
# run: mypy scripts |