From 34381808fedcdc6fc7567078a5ad89bc0919ab11 Mon Sep 17 00:00:00 2001 From: Alexander Popov Date: Mon, 12 Jun 2023 18:28:42 +0300 Subject: [PATCH] GitHub Actions: decrease the max-parallel to 1 to avoid the codecov rate limit --- .github/workflows/functional_test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/functional_test.yml b/.github/workflows/functional_test.yml index 5e8c181..31e44d0 100644 --- a/.github/workflows/functional_test.yml +++ b/.github/workflows/functional_test.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: - max-parallel: 3 + max-parallel: 1 fail-fast: false matrix: # Current ubuntu-latest (Ubuntu 22.04) provides the following versions of Python: -- 2.31.1