fixup! feat(rlstats): add unsubscribe command #224
This file contains hidden or 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 | |
| on: | |
| - push | |
| - pull_request | |
| jobs: | |
| mypy: | |
| name: Check typing with mypy | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set up Python 3.8 | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: 3.8 | |
| - name: Install requirements | |
| run: | | |
| python -m pip install -U pip setuptools wheel | |
| python -m pip install --user -Ur .ci/requirements/all_cogs.txt | |
| python -m pip install --user -Ur .ci/requirements/typing.txt | |
| - name: Check typing with mypy | |
| run: python -m mypy . |