LABSN / expyfun

Experimental paradigm functions.
BSD 3-Clause "New" or "Revised" License
13 stars 21 forks source link

MAINT: Dont use continue-on-error #472

Closed larsoner closed 4 weeks ago

larsoner commented 4 weeks ago

continue-on-error: true can lead to "successful" builds that had a failing step when if: always() is used, so just avoid it. Achieve the desired effect of not killing other jobs early with fail-fast: false instead.