Skip to content

Commit

Permalink
Update CI_build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
florian-huber authored Jul 1, 2024
1 parent 6c912c0 commit f413b9e
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/CI_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ jobs:
name: first code check / python-3.8 / ubuntu-latest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
- uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.9
- name: Python info
run: |
which python
Expand Down Expand Up @@ -49,11 +49,11 @@ jobs:
runs-on: ubuntu-latest
needs: first_check
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.7
uses: actions/setup-python@v1
- uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: 3.7
python-version: 3.9
- name: Python info
run: |
which python
Expand Down Expand Up @@ -93,10 +93,10 @@ jobs:
fail-fast: false
matrix:
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
python-version: ['3.7', '3.8', '3.9']
python-version: ['3.8', '3.9', '3.10', '3.11']
exclude:
- os: ubuntu-latest
python-version: 3.8 # or 3.9 when #240 is fully solved
python-version: 3.9
steps:
- uses: actions/checkout@v2
with:
Expand Down

0 comments on commit f413b9e

Please sign in to comment.