Corrected error and warnings for bulk statistics when feature labels do not match labels in segmentation mask #909
Workflow file for this run
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: check_formatting | |
on: [push, pull_request] | |
jobs: | |
formatting_job: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up conda | |
uses: conda-incubator/setup-miniconda@v2 | |
with: | |
miniforge-version: latest | |
miniforge-variant: mambaforge | |
channel-priority: strict | |
channels: conda-forge | |
show-channel-urls: true | |
use-only-tar-bz2: true | |
- name: Install dependencies and check formatting | |
shell: bash -l {0} | |
run: | |
mamba install --quiet --yes --file requirements.txt black && | |
black --version && | |
black tobac --check --diff |