Pylint action. #11
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: Check with mypy | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
type-check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.11 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install mypy pydantic | |
- name: Run mypy to generate cache | |
run: mypy py3xui || true | |
- name: Install missing stub packages | |
run: mypy --install-types --non-interactive | |
- name: Run mypy | |
run: mypy py3xui |