change numpy min version for python 3.7 #1
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: deidcm Continuous Integration | |
on: | |
pull_request: | |
branches: ["master"] | |
push: | |
branches: ["master"] | |
jobs: | |
codebase-checks: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
strategy: | |
matrix: | |
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.x'] | |
steps: | |
- | |
name: Checkout Repository | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.head_ref }} | |
- | |
name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- | |
name: Ensure Default Package Manager is up to date | |
run: python3 -m pip install --upgrade pip setuptools wheel | |
- | |
name: Install deidcm Package | |
run: pip install -e .[quality-tools] | |
- | |
name: Test with Pytest | |
run: pytest |