From 33fa3deaf4dd71b930dc4d8b2b660a67733dcc5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20REY?= Date: Sun, 17 Jul 2022 11:04:35 +0200 Subject: [PATCH] ci(workflow): disable fail fast on integration tests Some breaking changes on Ansible devel can make the whole integration tests being canceled because it fails with tests against devel. Since devel is not released, we have situtation where we can release a change in the collection without fear of breaking something for stable Ansible versions. --- .github/workflows/ansible-test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ansible-test.yml b/.github/workflows/ansible-test.yml index 0369c9db..dba0ddb2 100644 --- a/.github/workflows/ansible-test.yml +++ b/.github/workflows/ansible-test.yml @@ -76,6 +76,7 @@ jobs: integration: runs-on: ubuntu-latest strategy: + fail-fast: false matrix: grafana_version: ["9.0.2", "8.5.6", "7.5.16"] ansible_version: ["stable-2.11", "stable-2.12", "stable-2.13", "devel"]