Skip to content

Commit

Permalink
use in image a 'green' python version
Browse files Browse the repository at this point in the history
  • Loading branch information
alinelena committed Feb 3, 2024
1 parent 6df0c26 commit e56c6b6
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/ci_orig.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,17 @@ name: ci

on: [push, pull_request]

env:
pyver: 3.11

jobs:

tests:
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
matrix:
python-version: ['3.10','3.11','3.12']
python-version: ['3.9','3.10','3.11','3.12']
aiida-version: ['stable']

services:
Expand Down Expand Up @@ -55,10 +58,10 @@ jobs:
timeout-minutes: 15
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10
- name: Set up Python $pyver
uses: actions/setup-python@v2
with:
python-version: "3.10"
python-version: "$pyver"
- name: Install python dependencies
run: |
pip install --upgrade pip
Expand All @@ -71,10 +74,10 @@ jobs:
timeout-minutes: 15
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10
- name: Set up Python $pyver
uses: actions/setup-python@v2
with:
python-version: "3.10"
python-version: "$pyver"
- name: Install python dependencies
run: |
pip install --upgrade pip
Expand Down

0 comments on commit e56c6b6

Please sign in to comment.