Skip to content

Commit

Permalink
Use podman-compose in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
martinhoyer committed Aug 14, 2024
1 parent d2a33bc commit 9d07a90
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,13 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install -r src/requirements.txt
sudo apt-get update -y
sudo apt-get install podman -y
python -m pip install -U pip podman-compose
python -m pip install -r src/requirements.txt
- name: Start services
run: |
docker-compose up -d
podman-compose up -d
- name: Test
run: |
pytest

0 comments on commit 9d07a90

Please sign in to comment.