Skip to content

Commit e36255d

Browse files
committed
Fix ci-config-functions.yml workflow
Pip doesn't seem to like the cache data
1 parent f246a0c commit e36255d

File tree

1 file changed

+6
-10
lines changed

1 file changed

+6
-10
lines changed

.github/workflows/ci-config-functions.yml

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,23 +25,19 @@ jobs:
2525
strategy:
2626
fail-fast: false
2727
matrix:
28+
python-version: [3.11]
2829
container_runtime:
2930
- PODMAN
3031
steps:
31-
- uses: actions/cache@v3
32-
with:
33-
path: |
34-
~/.cache/pip
35-
~/.cache/pypoetry
36-
37-
- name: checkout source code
38-
uses: actions/checkout@v3
39-
- name: set up Python
32+
- uses: actions/checkout@v3
33+
- name: Python${{ matrix.python-version }}
4034
uses: actions/setup-python@v4
35+
with:
36+
python-version: ${{ matrix.python-version }}
4137
- name: Install Poetry
4238
run: |
39+
sudo python -m pip install --upgrade pip
4340
sudo python -m pip install poetry
44-
4541
- name: Run the scripts integration tests
4642
run: sudo make test_scripts
4743
env:

0 commit comments

Comments
 (0)