We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d23f7e commit ba5139aCopy full SHA for ba5139a
1 file changed
.github/workflows/python-integration.yaml
@@ -36,13 +36,18 @@ jobs:
36
- uses: actions/checkout@v4
37
38
39
+ - name: Set up Docker Compose
40
+ run: |
41
+ apt-get update
42
+ apt-get install -y docker-compose
43
+
44
- name: Set up Python ${{ inputs.PYTHON_VERSION }}
45
uses: actions/setup-python@v5
46
with:
47
python-version: ${{ inputs.PYTHON_VERSION }}
48
49
- - name: Install Dependencies
50
+ - name: Install Python Dependencies
51
run: |
52
python -m pip install --upgrade pip
53
pip install -r requirements.txt
0 commit comments