Skip to content

Commit 43b9170

Browse files
committed
fix: install podman-compose for tests in CI/CD
1 parent 8d00e21 commit 43b9170

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/python-app.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ jobs:
2222
python-version: "3.12"
2323
- name: Install dependencies
2424
run: |
25-
python -m pip install --upgrade pip
25+
sudo apt update
26+
sudo apt install -y podman podman-compose
27+
python3 -m pip install --upgrade pip
2628
pip install flake8 pytest
2729
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
2830
- name: Lint with flake8

0 commit comments

Comments
 (0)