Merge pull request #397 from gardar/molecule-max-parallel

fix(ci): limit number of parallel tests to avoid github api limits
This commit is contained in:
gardar 2024-07-02 03:07:19 +00:00 committed by GitHub
commit 46c6960c9b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 1 additions and 1 deletions

View file

@ -53,7 +53,6 @@ jobs:
ansible-test-sanity:
uses: ./.github/workflows/ansible-test-sanity.yml
needs:
- ansible-lint
- discover-ansible-versions
with:
ansible-core-versions: ${{ needs.discover-ansible-versions.outputs.versions }}

View file

@ -24,6 +24,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
fail-fast: false
max-parallel: 4
matrix:
targets: ${{ fromJson(inputs.targets) }}
ansible-core-versions: ${{ fromJson(inputs.ansible-core-versions) }}