Skip to content

Add BRATS expert model to support MRI image #152

Add BRATS expert model to support MRI image

Add BRATS expert model to support MRI image #152

Workflow file for this run

name: General Linting
on:
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-ci.txt
- name: Run isort
run: |
isort --check-only --diff .
- name: Run black
run: |
black --diff .
- name: Run ruff
run: |
ruff check .