From 9a8cafd6b1c5d780e6c79f993554dad4e13ca66b Mon Sep 17 00:00:00 2001 From: Felix Matouschek Date: Wed, 26 Jun 2024 09:37:51 +0200 Subject: [PATCH] fix(ci): Do not test ansible-core milestone with py3.10 Python 3.10 is no longer supported by ansible-core milestone, so this excludes it from the test matrices. Signed-off-by: Felix Matouschek --- .github/workflows/ci.yml | 8 ++++++++ .github/workflows/integration.yml | 4 ++++ 2 files changed, 12 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eedc893..607695b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -79,6 +79,10 @@ jobs: "ansible-version": "milestone", "python-version": "3.9" }, + { + "ansible-version": "milestone", + "python-version": "3.10" + }, { "ansible-version": "devel", "python-version": "3.9" @@ -112,6 +116,10 @@ jobs: "ansible-version": "milestone", "python-version": "3.9" }, + { + "ansible-version": "milestone", + "python-version": "3.10" + }, { "ansible-version": "devel", "python-version": "3.9" diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 68ae004..18f7fc6 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -23,6 +23,10 @@ on: "ansible-version": "milestone", "python-version": "3.9" }, + { + "ansible-version": "milestone", + "python-version": "3.10" + }, { "ansible-version": "devel", "python-version": "3.9"