Skip to content

Commit ba5139a

Browse files
committed
feat(tests): setup docker-compose for integration tests
1 parent 1d23f7e commit ba5139a

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/python-integration.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,18 @@ jobs:
3636
- uses: actions/checkout@v4
3737

3838

39+
- name: Set up Docker Compose
40+
run: |
41+
apt-get update
42+
apt-get install -y docker-compose
43+
3944
- name: Set up Python ${{ inputs.PYTHON_VERSION }}
4045
uses: actions/setup-python@v5
4146
with:
4247
python-version: ${{ inputs.PYTHON_VERSION }}
4348

4449

45-
- name: Install Dependencies
50+
- name: Install Python Dependencies
4651
run: |
4752
python -m pip install --upgrade pip
4853
pip install -r requirements.txt

0 commit comments

Comments
 (0)