From d780bb7cae01c8abf8af7045bbff6be59c2570e7 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Thu, 27 Jan 2022 10:06:22 +0100 Subject: [PATCH] stop running easyconfigs test suite with Python 3.5, also test with Python 3.8-3.10 --- .github/workflows/unit_tests.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml index ea157514055..d26f0d52020 100644 --- a/.github/workflows/unit_tests.yml +++ b/.github/workflows/unit_tests.yml @@ -5,19 +5,23 @@ jobs: runs-on: ubuntu-18.04 strategy: matrix: - python: [2.7, 3.5, 3.6, 3.7] + python: [2.7, 3.6, 3.7, 3.8, 3.9, 3.10] modules_tool: [Lmod-6.6.3, Lmod-7.8.22, Lmod-8.1.14] module_syntax: [Lua, Tcl] - # exclude some configurations: only test Tcl module syntax with Lmod 7.x and Python 2.7 & 3.5 + # exclude some configurations: only test Tcl module syntax with Lmod 7.x and Python 2.7 & 3.6 exclude: - modules_tool: Lmod-6.6.3 module_syntax: Tcl - modules_tool: Lmod-8.1.14 module_syntax: Tcl - - python: 3.6 - module_syntax: Tcl - python: 3.7 module_syntax: Tcl + - python: 3.8 + module_syntax: Tcl + - python: 3.9 + module_syntax: Tcl + - python: 3.10 + module_syntax: Tcl fail-fast: false steps: - uses: actions/checkout@v2