##// END OF EJS Templates
Merge pull request #13213 from Kojoley/fix-bunch-of-doctests...
Merge pull request #13213 from Kojoley/fix-bunch-of-doctests Fix bunch of doctests

File last commit:

r26485:288afbf3
r26940:32497c8d merge
Show More
mypy.yml
34 lines | 783 B | text/x-yaml | YamlLexer
name: Run MyPy
on:
push:
branches: [ master, 7.x]
pull_request:
branches: [ master, 7.x]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mypy pyflakes flake8
- name: Lint with mypy
run: |
mypy -p IPython.terminal
mypy -p IPython.core.magics
- name: Lint with pyflakes
run: |
flake8 IPython/core/magics/script.py
flake8 IPython/core/magics/packaging.py