Skip to content

Commit

Permalink
Add python version in jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
bebatut committed Sep 26, 2024
1 parent 509d683 commit ca00d14
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/fetch_filter_resources.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
python-version: '3.11'
- name: Install requirement
run: |
python -m pip install -r requirements.txt
Expand All @@ -42,7 +42,6 @@ jobs:
strategy:
#max-parallel: 1 #need to run one after another, since otherwise there is a chance, that mulitple jobs want to push to the results branch at the same time (which fails due to merge)
matrix:
python-version: [3.11]
subset:
- repositories01.list
- repositories02.list
Expand All @@ -53,7 +52,7 @@ jobs:
uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
python-version: '3.11'
- name: Install requirement
run: python -m pip install -r requirements.txt
- name: Download available servers
Expand All @@ -80,7 +79,7 @@ jobs:
uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
python-version: '3.11'
- name: Install requirement
run: |
python -m pip install -r requirements.txt
Expand Down

0 comments on commit ca00d14

Please sign in to comment.