Skip to content

Commit

Permalink
fix github actions server (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
petrjasek authored and eos87 committed Sep 17, 2024
1 parent e704288 commit dd47f21
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 25 deletions.
23 changes: 0 additions & 23 deletions .actions-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 @@ -7,6 +7,23 @@ jobs:

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

mongo:
image: mongo:4
ports:
- "27017:27017"

elastic:
image: docker.elastic.co/elasticsearch/elasticsearch:7.17.23
ports:
- "9200:9200"
env:
discovery.type: single-node

defaults:
run:
Expand All @@ -19,8 +36,6 @@ jobs:
with:
python-version: 3.8

- run: docker-compose -f ../.actions-docker-compose.yml up -d

- run: sudo apt-get update && sudo apt-get -y install libxml2-dev libxmlsec1-dev libxmlsec1-openssl

- run: |
Expand Down

0 comments on commit dd47f21

Please sign in to comment.