diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-01-04 14:51:20 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-01-04 14:51:20 +0300 |
commit | 4e49414e2f9fbb3c36f175c2f8a456d1dd77f9c6 (patch) | |
tree | 0745c1e17b4a29f4855e69981d6de6963140ec25 /.github/workflows/ci.yml | |
parent | workflows/ci: minor fix (diff) | |
download | vk-scripts-4e49414e2f9fbb3c36f175c2f8a456d1dd77f9c6.tar.gz vk-scripts-4e49414e2f9fbb3c36f175c2f8a456d1dd77f9c6.zip |
workflows/ci: limit max number of parallel jobs
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r-- | .github/workflows/ci.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 516e226..b5a5740 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,6 +17,8 @@ jobs: strategy: matrix: python-version: [3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 3.x] + # Random number to prevent exceeding the request frequency limit. + max-parallel: 3 # 3.4 is not available on Focal. runs-on: ubuntu-18.04 name: 'Python ${{ matrix.python-version }}' |