Skip to content

Commit 448db52

Browse files
author
dmirizzi
committed
fix: update workflow
1 parent e9da6d5 commit 448db52

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/ci_workflow.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: [3.9, 3.12]
10+
python-version: [3.9]
1111
steps:
1212
- uses: actions/checkout@v2
1313
- name: Set up Python '${{ matrix.python-version }}'
@@ -56,8 +56,14 @@ jobs:
5656
python-version: [ "3.9", "3.12"]
5757
steps:
5858
- uses: actions/checkout@v2
59-
- name: Set up Docker Buildx
60-
uses: docker/setup-buildx-action@v2
59+
60+
- name: Set up Docker Compose
61+
run: |
62+
sudo curl -L "https://github.com/docker/compose/releases/download/v2.24.5/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
63+
sudo chmod +x /usr/local/bin/docker-compose
64+
docker-compose --version # Verify installation
65+
shell: bash
66+
6167
- name: Set up Python ${{ matrix.python-version }}
6268
uses: actions/setup-python@v2
6369
with:

0 commit comments

Comments
 (0)