https://github.com/python/cpython/commit/49ad4d077ff0297ca7e04ac20102d4068351cae7 commit: 49ad4d077ff0297ca7e04ac20102d4068351cae7 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: AlexWaygood <[email protected]> date: 2024-05-21T12:47:00Z summary:
[3.13] Use `fail-fast: false` in `mypy.yml` (GH-119297) (#119304) Use `fail-fast: false` in `mypy.yml` (GH-119297) See docs about this setting: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actionsGH-jobsjob_idstrategyfail-fast (cherry picked from commit b36533290608aed757f6eb16869a679650d32e17) Co-authored-by: Nikita Sobolev <[email protected]> files: M .github/workflows/mypy.yml diff --git a/.github/workflows/mypy.yml b/.github/workflows/mypy.yml index 35996f237814ba..1b2d998182e0f7 100644 --- a/.github/workflows/mypy.yml +++ b/.github/workflows/mypy.yml @@ -34,6 +34,7 @@ concurrency: jobs: mypy: strategy: + fail-fast: false matrix: target: [ "Lib/_pyrepl", _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: [email protected]
