Skip to content

hooks: update pydicom hook for compatibility with pydicom v3.0.0 #1492

hooks: update pydicom hook for compatibility with pydicom v3.0.0

hooks: update pydicom hook for compatibility with pydicom v3.0.0 #1492

Workflow file for this run

name: Lint
on:
pull_request: # Trigger on PRs to every branch
branches:
- '*' # Match every branch (Next line as well)
- '*/*'
jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Setup Python
uses: actions/setup-python@v5
- name: Install dependencies
run: pip install -U flake8 wheel setuptools
- name: Run Lint
run: flake8 -v
- name: Test Distribution
run: |
python setup.py sdist bdist_wheel
pip install -v .