Skip to content

Commit 396737e

Browse files
.
1 parent 2674522 commit 396737e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/test-integrations-cloud.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@ jobs:
3838
# ubuntu-20.04 is the last version that supported python3.6
3939
# see https://github.com/actions/setup-python/issues/544#issuecomment-1332535877
4040
os: [ubuntu-22.04]
41-
# Use Docker container only for Python 3.6
42-
container: ${{ matrix.python-version == '3.6' && 'python:3.6' || null }}
41+
# Use Docker container for Python 3.6 and 3.8
42+
container: ${{ (matrix.python-version == '3.6' || matrix.python-version == '3.8') && format('python:{0}', matrix.python-version) || null }}
4343
steps:
4444
- uses: actions/checkout@v6.0.2
4545
- uses: actions/setup-python@v6
46-
if: ${{ matrix.python-version != '3.6' }}
46+
if: ${{ matrix.python-version != '3.6' && matrix.python-version != '3.8' }}
4747
with:
4848
python-version: ${{ matrix.python-version }}
4949
allow-prereleases: true

0 commit comments

Comments
 (0)