This repository has been archived by the owner on Aug 19, 2024. It is now read-only.
Updated readme to be equal to Tribler/Tribler again #222
Workflow file for this run
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 | |
on: [pull_request, workflow_dispatch] | |
jobs: | |
mypy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Python 3.9 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.9 | |
- name: Install mypy | |
run: pip install mypy | |
- name: Run mypy | |
run: | | |
wget -O libtorrent.pyi https://github.com/arvidn/libtorrent/raw/master/bindings/python/libtorrent/__init__.pyi | |
mypy -p src.tribler.core |