Skip to content

Commit

Permalink
resume running test suite with Python 3.5 by using actions/setup-pyth…
Browse files Browse the repository at this point in the history
…on@v2
  • Loading branch information
boegel committed Jan 27, 2022
1 parent 925cfc7 commit aaa7753
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
- uses: actions/checkout@v2

- name: set up Python
uses: actions/setup-python@v1
uses: actions/setup-python@v2
with:
python-version: 3.8

Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
runs-on: ubuntu-18.04
strategy:
matrix:
python: [2.7, 3.6, 3.7, 3.8, 3.9, '3.10']
python: [2.7, 3.5, 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.6
Expand All @@ -14,6 +14,8 @@ jobs:
module_syntax: Tcl
- modules_tool: Lmod-8.1.14
module_syntax: Tcl
- python: 3.5
module_syntax: Tcl
- python: 3.7
module_syntax: Tcl
- python: 3.8
Expand All @@ -36,7 +38,7 @@ jobs:
key: eb-sourcepath

- name: set up Python
uses: actions/setup-python@v1
uses: actions/setup-python@v2
with:
python-version: ${{matrix.python}}
architecture: x64
Expand Down

0 comments on commit aaa7753

Please sign in to comment.