From 08a85625ebcff1a055a294666207b950f0a31afc Mon Sep 17 00:00:00 2001 From: Alexander Popov Date: Mon, 6 Mar 2023 20:06:38 +0300 Subject: [PATCH] Limit the number of parallel GitHub Action jobs to 3 That hopefully prevents the error "codecov failed with exit code 255". --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d6b8cfd..380bd49 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: - max-parallel: 4 + max-parallel: 3 fail-fast: false matrix: # Current ubuntu-latest (Ubuntu 22.04) provides the following versions of Python: -- 2.31.1