diff options
author | Nikita Sobolev <mail@sobolevn.me> | 2024-05-21 11:52:43 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-21 11:52:43 (GMT) |
commit | b36533290608aed757f6eb16869a679650d32e17 (patch) | |
tree | 50b73679bd7fab8747259fa55648a9ed0ae21bba /.github | |
parent | e870c852c0ea96fa4e4569e9c39c7ceb80ce858d (diff) | |
download | cpython-b36533290608aed757f6eb16869a679650d32e17.zip cpython-b36533290608aed757f6eb16869a679650d32e17.tar.gz cpython-b36533290608aed757f6eb16869a679650d32e17.tar.bz2 |
Use `fail-fast: false` in `mypy.yml` (#119297)
See docs about this setting: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstrategyfail-fast
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/mypy.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/mypy.yml b/.github/workflows/mypy.yml index 35996f2..1b2d998 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", |