enh: add notebook demonstrating access to data from Imaging Data Commons #5261
Workflow file for this run
This file contains hidden or 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: build | |
| on: | |
| # quick tests for every pull request | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| pep8: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Python 3.10 | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.10' | |
| cache: 'pip' | |
| - name: Install dependencies | |
| run: | | |
| find /opt/hostedtoolcache/* -maxdepth 0 ! -name 'Python' -exec rm -rf {} \; | |
| python -m pip install --upgrade pip wheel wheel-stub | |
| python -m pip install -r requirements.txt | |
| - name: PEP8 check | |
| run: | | |
| $(pwd)/runner.sh --no-run |