File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change 7
7
runs-on : ubuntu-latest
8
8
strategy :
9
9
matrix :
10
- python-version : [3.9, 3.12 ]
10
+ python-version : [3.9]
11
11
steps :
12
12
- uses : actions/checkout@v2
13
13
- name : Set up Python '${{ matrix.python-version }}'
56
56
python-version : [ "3.9", "3.12"]
57
57
steps :
58
58
- 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
+
61
67
- name : Set up Python ${{ matrix.python-version }}
62
68
uses : actions/setup-python@v2
63
69
with :
You can’t perform that action at this time.
0 commit comments