Skip to content

Commit

Permalink
Update GH actions for Python 3.7 after the move of runners to Ubuntu …
Browse files Browse the repository at this point in the history
…24.04
  • Loading branch information
vkarak committed Dec 17, 2024
1 parent 4c67d49 commit b18b428
Showing 1 changed file with 21 additions and 3 deletions.
24 changes: 21 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand Down Expand Up @@ -46,6 +46,24 @@ jobs:
run: |
./test_reframe.py
unittest-py37:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ['3.7']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies and docs
run: |
./bootstrap.sh +docs
- name: Generic Unittests
run: |
./test_reframe.py
unittest-macos:
runs-on: macos-latest
strategy:
Expand Down Expand Up @@ -120,7 +138,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
steps:
- uses: actions/checkout@v4
- name: Setup up Python ${{ matrix.python-version }}
Expand All @@ -143,7 +161,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand Down

0 comments on commit b18b428

Please sign in to comment.