feat: Save mask to derivatives, pass derivatives to outputnode #216
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: Validations | |
| on: | |
| push: | |
| branches: [ '*' ] | |
| pull_request: | |
| branches: [ master, main, 'maint/*' ] | |
| env: | |
| FORCE_COLOR: true | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| style: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - run: pipx run ruff check sdcflows/ | |
| - run: pipx run ruff format --diff sdcflows/ | |
| # codespell: | |
| # runs-on: ubuntu-latest | |
| # steps: | |
| # - uses: actions/checkout@v5 | |
| # - uses: codespell-project/actions-codespell@v2 |