Skip to content

Commit

Permalink
fix docker-compose on github actions error
Browse files Browse the repository at this point in the history
  • Loading branch information
petrjasek committed Aug 19, 2024
1 parent 5571c06 commit b300124
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 24 deletions.
22 changes: 0 additions & 22 deletions .github/docker-compose.yml

This file was deleted.

19 changes: 17 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,23 @@ jobs:
server:

runs-on: ubuntu-latest
services:
redis:
image: redis:alpine
ports:
- "6379:6379"

mongo:
image: mongo:4.4
ports:
- "27017:27017"

elastic:
image: elasticsearch:7.10.1
ports:
- "9200:9200"
env:
discovery.type: single-node

defaults:
run:
Expand All @@ -27,8 +44,6 @@ jobs:
sudo apt-get update
sudo apt-get -y install libxml2-dev libxmlsec1-dev libxmlsec1-openssl libexempi-dev
- run: docker-compose -f ../.github/docker-compose.yml up -d

- run: |
python -m pip install --upgrade pip wheel setuptools
pip install -r dev-requirements.txt
Expand Down

0 comments on commit b300124

Please sign in to comment.