File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4343 with :
4444 python : ${{ matrix.python }}
4545 platform : ${{ matrix.platform }}
46- # https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#jobsjob_idcontinue-on-error
47- continue-on-error : ${{ matrix.python == '3.15' }}
46+ # continue-on-error can't be set on a reusable-workflow caller job
47+ # (jaraco/skeleton#199), so pass it through as an input instead.
48+ continue-on-error : ${{ matrix.python == '3.15' }}
4849
4950 collateral :
5051 strategy :
Original file line number Diff line number Diff line change 1616 Tox environment to run; if empty, runs default tox
1717 type : string
1818 default : " "
19+ continue-on-error :
20+ description : >-
21+ Whether a failure of this run should be tolerated
22+ (e.g. for pre-release Pythons)
23+ type : boolean
24+ default : false
1925
2026env :
2127 # Environment variable to support color support (jaraco/skeleton#66)
3238jobs :
3339 run :
3440 runs-on : ${{ inputs.platform }}
41+ continue-on-error : ${{ inputs.continue-on-error }}
3542 permissions :
3643 contents : read
3744 steps :
You can’t perform that action at this time.
0 commit comments