From 76846027e6903dbde58f4725fca5beea8dc221a1 Mon Sep 17 00:00:00 2001 From: Martin Hoyer Date: Wed, 14 Aug 2024 15:41:36 +0200 Subject: [PATCH] Use podman-compose in CI --- .github/workflows/test.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 53fbc38..e6f78c7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -23,12 +23,11 @@ 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 + 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