Skip to content

1.5.10.post: fix * in dependency versions #47918

1.5.10.post: fix * in dependency versions

1.5.10.post: fix * in dependency versions #47918

Workflow file for this run

name: Test
on: # Trigger the workflow on push or pull request, but only for the master branch
push:
branches: [master, "release/*"]
pull_request:
branches: [master, "release/*"]
jobs:
mypy:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@master
- uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install mypy
run: |
grep mypy requirements/test.txt | xargs -0 pip install
pip list
- run: mypy --install-types --non-interactive