We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f246a0c commit e36255dCopy full SHA for e36255d
.github/workflows/ci-config-functions.yml
@@ -25,23 +25,19 @@ jobs:
25
strategy:
26
fail-fast: false
27
matrix:
28
+ python-version: [3.11]
29
container_runtime:
30
- PODMAN
31
steps:
- - 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
+ - uses: actions/checkout@v3
+ - name: Python${{ matrix.python-version }}
40
uses: actions/setup-python@v4
+ with:
+ python-version: ${{ matrix.python-version }}
41
- name: Install Poetry
42
run: |
+ sudo python -m pip install --upgrade pip
43
sudo python -m pip install poetry
44
45
- name: Run the scripts integration tests
46
run: sudo make test_scripts
47
env:
0 commit comments