Typecheck #1
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: Typecheck | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "17 16 * * *" | |
# Run on main every day at 16:17 UTC | |
jobs: | |
mypy: | |
name: MyPy | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- name: Install mypy | |
run: pip install mypy==0.950 | |
- name: Run | |
run: python3 internal/typecheck.py |