diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ac145324..603a8416 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"] + exclude: + - python-version: 3.10 + nautobot-version: 1.2 env: PYTHON_VER: "${{ matrix.python-version }}" NAUTOBOT_VER: "${{ matrix.nautobot-version }}"