return task states from run_blockwise
instead of just a boolean for…
#79
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: Python Black | |
on: [push, pull_request] | |
jobs: | |
lint: | |
name: Python Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Setup checkout | |
uses: actions/checkout@master | |
- name: Lint with Black | |
run: | | |
pip install black | |
black daisy tests --diff --check |