From c6a15ac8f380132ba17243019289e26f0a87b00a Mon Sep 17 00:00:00 2001 From: Tushar Mittal Date: Fri, 21 Oct 2022 00:35:21 +0530 Subject: [PATCH] ci: update github ci action Signed-off-by: Tushar Mittal --- .github/workflows/ci.yml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ac145324..89d6584c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,13 +10,11 @@ jobs: strategy: fail-fast: true matrix: - include: - - python-version: "3.7" - nautobot-version: "1.2" - - python-version: "3.8" - nautobot-version: "1.3" - - python-version: "3.9" - nautobot-version: "1.3" + python-version: ["3.7", "3.8", "3.9", "3.10"] + nautobot-version: ["1.2", "1.3", "1.4"] + exclude: + - python-version: 3.10 + nautobot-version: 1.2 env: PYTHON_VER: "${{ matrix.python-version }}" NAUTOBOT_VER: "${{ matrix.nautobot-version }}"