Skip to content

Add augmentation mri transforms #1731

Add augmentation mri transforms

Add augmentation mri transforms #1731

Workflow file for this run

name: CodeCov
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
pip install coverage
pip install -e ".[dev]"
- name: Run Coverage
run: |
coverage run -m pytest --ignore=projects
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v1