Skip to content

[MRG] Update hide_modules.py #239

[MRG] Update hide_modules.py

[MRG] Update hide_modules.py #239

Workflow file for this run

name: pull-request-typing
on:
pull_request:
branches: [ master ]
jobs:
check-typing:
# Matrix builds with released pydicom
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
python-version: ['3.10']
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mypy
pip install pydicom
- name: Run typing check with mypy
run: |
mypy