Skip to content

revert fuzz input

revert fuzz input #63

Workflow file for this run

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